PHP对图片按照一定比例缩放并生成图片文件
Posted 桥洞下的程序猿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP对图片按照一定比例缩放并生成图片文件相关的知识,希望对你有一定的参考价值。
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对图片按照一定比例缩放并生成图片文件的主要内容,如果未能解决你的问题,请参考以下文章