PHP实现图片压缩同时保持清晰度

上传图片会占用很多空间,影响体验效果,很头大,最近找到一篇文章,实现了图片压缩,做个总结:

调用代码:

$source =  'test.jpg';  
$dst_img = 'test_111.jpg';  
$percent = 1;  #原图压缩,不缩放,但体积大大降低  
$image = (new imgcompress($source,$percent))->compressImg($dst_img); 

相关类文件如下,保存为imgcompress.class.php

    src = $src;  
                  $this->percent = $percent;  
           }  
      
           /** 高清压缩图片 
            * @param string $saveName  提供图片名(可不带扩展名,用源图扩展名)用于保存。或不提供文件名直接显示 
            */  
           public function compressImg($saveName='')  
           {  
                  $this->_openImage();  
                  if(!emptyempty($saveName)) $this->_saveImage($saveName);  //保存  
                  else $this->_showImage();  
           }  
      
           /** 
            * 内部:打开图片 
            */  
           private function _openImage()  
           {  
                  list($width, $height, $type, $attr) = getimagesize($this->src);  
                  $this->imageinfo = array(  
                         'width'=>$width,  
                         'height'=>$height,  
                         'type'=>image_type_to_extension($type,false),  
                         'attr'=>$attr  
                  );  
                  $fun = "imagecreatefrom".$this->imageinfo['type'];  
                  $this->image = $fun($this->src);  
                  $this->_thumpImage();  
           }  
           /** 
            * 内部:操作图片 
            */  
           private function _thumpImage()  
           {  
                  $new_width = $this->imageinfo['width'] * $this->percent;  
                  $new_height = $this->imageinfo['height'] * $this->percent;  
                  $image_thump = imagecreatetruecolor($new_width,$new_height);  
                  //将原图复制带图片载体上面,并且按照一定比例压缩,极大的保持了清晰度  
                  imagecopyresampled($image_thump,$this->image,0,0,0,0,$new_width,$new_height,$this->imageinfo['width'],$this->imageinfo['height']);  
                  imagedestroy($this->image);  
                  $this->image = $image_thump;  
           }  
           /** 
            * 输出图片:保存图片则用saveImage() 
            */  
           private function _showImage()  
           {  
                  header('Content-Type: image/'.$this->imageinfo['type']);  
                  $funcs = "image".$this->imageinfo['type'];  
                  $funcs($this->image);  
           }  
           /** 
            * 保存图片到硬盘: 
            * @param  string $dstImgName  1、可指定字符串不带后缀的名称,使用源图扩展名 。2、直接指定目标图片名带扩展名。 
            */  
           private function _saveImage($dstImgName)  
           {  
                  if(emptyempty($dstImgName)) return false;  
                  $allowImgs = ['.jpg', '.jpeg', '.png', '.bmp', '.wbmp','.gif'];   //如果目标图片名有后缀就用目标图片扩展名 后缀,如果没有,则用源图的扩展名  
                  $dstExt =  strrchr($dstImgName ,".");  
                  $sourseExt = strrchr($this->src ,".");  
                  if(!emptyempty($dstExt)) $dstExt =strtolower($dstExt);  
                  if(!emptyempty($sourseExt)) $sourseExt =strtolower($sourseExt);  
      
                  //有指定目标名扩展名  
                  if(!emptyempty($dstExt) && in_array($dstExt,$allowImgs)){  
                         $dstName = $dstImgName;  
                  }elseif(!emptyempty($sourseExt) && in_array($sourseExt,$allowImgs)){  
                         $dstName = $dstImgName.$sourseExt;  
                  }else{  
                         $dstName = $dstImgName.$this->imageinfo['type'];  
                  }  
                  $funcs = "image".$this->imageinfo['type'];  
                  $funcs($this->image,$dstName);  
           }  
      
           /** 
            * 销毁图片 
            */  
           public function __destruct(){  
                  imagedestroy($this->image);  
           }  
    }  

注意:
当上传图片过大时,会报错误,Allowed memory size内存不足,报错提醒是imagecreatetruecolor()函数,一开始一直纠结在php.ini 中memory_limit 的设置,memory_limit 设置很大,还是会报错,被坑了好久,最后把_thumpImage中imagecreatetruecolor()都注释之后好了,


PHP实现图片压缩同时保持清晰度_第1张图片
图片.png

,这个_thumpImage方法,主要是根据缩放比例缩放图片,不影响图片压缩
郁闷的是,我在本地环境运行没有报这个错误,查看phpinfo,gd库信息不一样,可能是服务器gd库不支持函数imagecreatetruecolor(),具体原因也不是很清楚


PHP实现图片压缩同时保持清晰度_第2张图片
服务器gd信息

PHP实现图片压缩同时保持清晰度_第3张图片
本地环境gd信息

参考文章
https://blog.csdn.net/qq_36608163/article/details/73167284

你可能感兴趣的:(PHP实现图片压缩同时保持清晰度)