我正在使用简单的图像调整大小方法
list($width, $height) = getimagesize($filename);
$new_width = $width * $percent;
$new_height = $height * $percent;
$image_p = imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefromjpeg($filename);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
imagejpeg($image_p, null, 100);
Eventhoug 我已经将质量最大化,当涉及到较小的图像尺寸时,生成的图像质量很差(原始 500 像素到新的 100 像素)。
有没有其他方法可以提高图像质量?