使用以下功能调整图像大小。
<?php
function resize($get_width, $get_height, $image_url){
header('Content-type: image/jpeg');
list($width, $height) = getimagesize($image_url);
$image_p = imagecreatetruecolor($get_width, $get_height);
$image = imagecreatefromjpeg($image_url);
imagecopyresampled($image_p, $image_url, 0, 0, 0, 0, $get_width, $get_height, $width, $height);
imagejpeg($image_p, null, 100);
}
?>
问题
在调整大小时图像质量下降。
示例
使用css调整图像大小
使用上面的功能调整图像
我需要什么
的质量与第一张图片相似,但使用的是php函数而不是css。