VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php高清晰度无损图片压缩功能的实现代码

经常会用到把上传的大图片压缩,特别是体积,在微信等APP应用上,也默认都是有压缩的,那么,怎么样对图片大幅度压缩却仍能保持较高的清晰度呢?

压缩通常是有按比例缩放,和指定宽度压缩的,效果很不错,一个数码相机拍的4M图片,压缩后保持了较高的清晰度和原图宽高值,只有700K。

下面是代码(有两个文件,imgcompress.class.php 类,及compress.php)

compress.php

  1. <?php 
  2. require_once 'imgcompress.class.php'
  3. $source = 'test.png';//原图文件名 
  4. $dst_img = 'test_.png';//保存图片的文件名 
  5. $percent = ; #原图压缩,不缩放,但体积大大降低 
  6. $image = (new imgcompress($source,$percent))->compressImg($dst_img); 

imgcompress.class.php

  1. <?php 
  2.  /** 
  3.  * 图片压缩类:通过缩放来压缩。 
  4.  * 如果要保持源图比例,把参数$percent保持为即可。 
  5.  * 即使原比例压缩,也可大幅度缩小。数码相机M图片。也可以缩为KB左右。如果缩小比例,则体积会更小。 
  6.  * 
  7.  * 结果:可保存、可直接显示。 
  8.  */ 
  9. class imgcompress{ 
  10.   private $src
  11.   private $image
  12.   private $imageinfo
  13.   private $percent = .; 
  14.   /** 
  15.    * 图片压缩 
  16.    * @param $src 源图 
  17.    * @param float $percent 压缩比例 
  18.    */ 
  19.   public function __construct($src$percent=) 
  20.   { 
  21.     $this->src = $src
  22.     $this->percent = $percent
  23.   } 
  24.   /** 高清压缩图片 
  25.    * @param string $saveName 提供图片名(可不带扩展名,用源图扩展名)用于保存。或不提供文件名直接显示 
  26.    */ 
  27.   public function compressImg($saveName=''
  28.   { 
  29.     $this->_openImage(); 
  30.     if(!emptyempty($saveName)) $this->_saveImage($saveName); //保存 
  31.     else $this->_showImage(); 
  32.   } 
  33.   /** 
  34.    * 内部:打开图片 
  35.    */ 
  36.   private function _openImage() 
  37.   { 
  38.     list($width$height$type$attr) = getimagesize($this->src); 
  39.     $this->imageinfo = array
  40.       'width'=>$width
  41.       'height'=>$height
  42.       'type'=>image_type_to_extension($type,false), 
  43.       'attr'=>$attr 
  44.     ); 
  45.     $fun = "imagecreatefrom".$this->imageinfo['type']; 
  46.     $this->image = $fun($this->src); 
  47.     $this->_thumpImage(); 
  48.   } 
  49.   /** 
  50.    * 内部:操作图片 
  51.    */ 
  52.   private function _thumpImage() 
  53.   { 
  54.     $new_width = $this->imageinfo['width'] * $this->percent; 
  55.     $new_height = $this->imageinfo['height'] * $this->percent; 
  56.     $image_thump = imagecreatetruecolor($new_width,$new_height); 
  57.     //将原图复制带图片载体上面,并且按照一定比例压缩,极大的保持了清晰度 
  58.     imagecopyresampled($image_thump,$this->image,,,,,$new_width,$new_height,$this->imageinfo['width'],$this->imageinfo['height']); 
  59.     imagedestroy($this->image); 
  60.     $this->image = $image_thump
  61.   } 
  62.   /** 
  63.    * 输出图片:保存图片则用saveImage() 
  64.    */ 
  65.   private function _showImage() 
  66.   { 
  67.     header('Content-Type: image/'.$this->imageinfo['type']); 
  68.     $funcs = "image".$this->imageinfo['type']; 
  69.     $funcs($this->image); 
  70.   } 
  71.   /** 
  72.    * 保存图片到硬盘: 
  73.    * @param string $dstImgName 、可指定字符串不带后缀的名称,使用源图扩展名 。、直接指定目标图片名带扩展名。 
  74.    */ 
  75.   private function _saveImage($dstImgName
  76.   { 
  77.     if(emptyempty($dstImgName)) return false; 
  78.     $allowImgs = ['.jpg''.jpeg''.png''.bmp''.wbmp','.gif'];  //如果目标图片名有后缀就用目标图片扩展名 后缀,如果没有,则用源图的扩展名 
  79.     $dstExt = strrchr($dstImgName ,"."); 
  80.     $sourseExt = strrchr($this->src ,"."); 
  81.     if(!emptyempty($dstExt)) $dstExt =strtolower($dstExt); 
  82.     if(!emptyempty($sourseExt)) $sourseExt =strtolower($sourseExt); 
  83.     //有指定目标名扩展名 
  84.     if(!emptyempty($dstExt) && in_array($dstExt,$allowImgs)){ 
  85.       $dstName = $dstImgName
  86.     }elseif(!emptyempty($sourseExt) && in_array($sourseExt,$allowImgs)){ 
  87.       $dstName = $dstImgName.$sourseExt
  88.     }else
  89.       $dstName = $dstImgName.$this->imageinfo['type']; 
  90.     } 
  91.     $funcs = "image".$this->imageinfo['type']; 
  92.     $funcs($this->image,$dstName); 
  93.   } 
  94.   /** 
  95.   * 销毁图片 
  96.   */ 
  97.   public function __destruct(){ 
  98.     imagedestroy($this->image); 
  99.   } 

使用之后个人感觉 $percent 设置为0.5 左右就不错了,压缩后的图片与原图质量基本一样。

原文链接:http://www.phpfensi.com/php/20211102/18350.html


相关教程