">
当前位置:Gxlcms > PHP教程 > php图片等比例缩放函数

php图片等比例缩放函数

时间:2021-07-01 10:21:17 帮助过:69人阅读

php图片等比例缩放函数

源代码如下:

$filename="q.jpg";
$per=0.3;
list($width, $height)=getimagesize($filename);
$n_w=$width*$per;
$n_h=$height*$per;
$new=imagecreatetruecolor($n_w, $n_h);
$img=imagecreatefromjpeg($filename);
//拷贝部分图像并调整
imagecopyresized($new, $img,0, 0,0, 0,$n_w, $n_h, $width, $height);
//图像

输出新图片、另存为
imagejpeg($new, "q1.jpg");
imagedestroy($new);
imagedestroy($img);

?>

人气教程排行