Imgcompress.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Administrator
  5. * Date: 2020/8/7
  6. * Time: 15:37
  7. */
  8. namespace app\common\library;
  9. class Imgcompress{
  10. private $src;
  11. private $image;
  12. private $imageinfo;
  13. private $percent = 0.5;
  14. /**
  15. * 图片压缩
  16. * @param $src 源图
  17. * @param float $percent 压缩比例
  18. */
  19. public function __construct($src, $percent=1)
  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 = round($this->imageinfo['width'] * $this->percent);
  55. $new_height = round($this->imageinfo['height'] * $this->percent);
  56. $image_thump = imagecreatetruecolor($new_width,$new_height);
  57. //将原图复制带图片载体上面,并且按照一定比例压缩,极大的保持了清晰度
  58. imagecopyresampled($image_thump,$this->image,0,0,0,0,$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 1、可指定字符串不带后缀的名称,使用源图扩展名 。2、直接指定目标图片名带扩展名。
  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. }