码迷,mamicode.com
首页 > 其他好文 > 详细

图片重取样

时间:2015-06-09 19:04:50      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

header("Content-type: image/jpeg");
$file = "10k.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);

图片重取样

标签:

原文地址:http://www.cnblogs.com/sanwenyu/p/4563915.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!