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

php图片等比例缩放

时间:2017-08-30 14:16:31      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:file   图片等比例缩放   ges   jpeg   zed   color   resize   test   name   

<?php
$filename="./test1.jpg";
$per=0.5;
list($width, $height)=getimagesize($filename);
$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, "./test11.jpg");
imagedestroy($new);
imagedestroy($img);
?>

php图片等比例缩放

标签:file   图片等比例缩放   ges   jpeg   zed   color   resize   test   name   

原文地址:http://www.cnblogs.com/leku_cc/p/7452592.html

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