相关关键词
关于我们
最新文章
浅谈关于PHP解决图片无损压缩的问题
发布日期:2017-09-01 00:00:00
74
本文介绍了关于PHP解决图片无损压缩的问题,分享给大家,具体如下:
代码如下:
header("Content-type: image/jpeg"); $file = "111.jpg"; $percent = 1.5; //图片压缩比 list($width, $height) = getimagesize($file); //获取原图尺寸 //缩放尺寸 $newwidth = $width * $percent; $newheight = $height * $percent; $src_im = imagecreatefromjpeg($file); $dst_im = imagecreatetruecolor($newwidth, $newheight); imagecopyresized($dst_im, $src_im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height); imagejpeg($dst_im); //输出压缩后的图片 imagedestroy($dst_im); imagedestroy($src_im);