PHP實現高畫質晰度無損圖片壓縮功能的程式碼

凌雲發表於2019-01-22

  經常會用到把上傳的大圖片壓縮,特別是體積,在微信等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(!empty($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(empty($dstImgName)) return false;
  78. $allowImgs = ['.jpg', '.jpeg', '.png', '.bmp', '.wbmp','.gif']; //如果目標圖片名有字尾就用目標圖片副檔名 字尾,如果沒有,則用源圖的副檔名
  79. $dstExt = strrchr($dstImgName ,".");
  80. $sourseExt = strrchr($this->src ,".");
  81. if(!empty($dstExt)) $dstExt =strtolower($dstExt);
  82. if(!empty($sourseExt)) $sourseExt =strtolower($sourseExt);
  83. //有指定目標名副檔名
  84. if(!empty($dstExt) && in_array($dstExt,$allowImgs)){
  85. $dstName = $dstImgName;
  86. }elseif(!empty($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. }
  100. }

  使用之後個人感覺 $percent 設定為0.5 左右就不錯了,壓縮後的圖片與原圖質量基本一樣。

  總結

  以上所述是小編給大家介紹的php高畫質晰度無損圖片壓縮功能的實現程式碼,希望對大家有所幫助。

相關文章