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