php图片等比例缩放
Posted 只羡鸳鸯
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php图片等比例缩放相关的知识,希望对你有一定的参考价值。
<?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图片等比例缩放的主要内容,如果未能解决你的问题,请参考以下文章