码迷,mamicode.com
首页 > Web开发 > 详细

PHP对图片按照一定比例缩放并生成图片文件

时间:2016-10-25 14:03:54      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:color   img   images   resize   输出   jpg   调整   ges   height   

list($width, $height)=getimagesize($filename);
//缩放比例
$per=round(400/$width,3);

$n_w=$width*$per;
$n_h=$height*$per;
$new=imagecreatetruecolor($n_w, $n_h);
$img=imagecreatefromjpeg($filename);
//copy部分图像并调整
imagecopyresized($new, $img,0, 0,0, 0,$n_w, $n_h, $width, $height);
//图像输出新图片、另存为
imagejpeg($new, "a.jpg");
imagedestroy($new);
imagedestroy($img);

PHP对图片按照一定比例缩放并生成图片文件

标签:color   img   images   resize   输出   jpg   调整   ges   height   

原文地址:http://www.cnblogs.com/wenxinphp/p/5996168.html

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