-2

我必须用 PHP 调整图像大小。但是......质量非常非常糟糕!(看图片)

这是我的代码:

function _copyAndResizeImage($id, $wanted_width, $isAdvert=true) {
// The file
if ($isAdvert) {
    $filename = "../upload/images/advert/".$id."/1.jpg";
} else {
    $filename = "../upload/images/user/".$id.".jpg";
}

list($width, $height) = getimagesize($filename);

if ($width == 0) {
    $percent=1;
} else {
    $percent = $wanted_width / $width;
}

// Content type
header('Content-Type: image/jpeg');

// Get new dimensions
$new_width = $width * $percent;
$new_height = $height * $percent;

// Resample
$image_p = imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefromjpeg($filename);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);

// Output
if ($isAdvert) {
    imagejpeg($image_p, '../upload/images/advert/'.$id.'/1-'.$wanted_width.'.jpg');
} else {
    imagejpeg($image_p, '../upload/images/user/'.$id.'-'.$wanted_width.'.jpg');
}

}

在此处输入图像描述

你有想法吗?谢谢

4

2 回答 2

3

由于您正在调整较小的基于光栅(像素)图像的大小,因此在将其调整为较大尺寸时会降低质量。这是意料之中的。如果您不希望这种情况发生,请使用 SVG。

于 2013-06-25T18:54:34.110 回答
0

imagejpeg jas 第三个可选参数,范围从 0 到 100 用于质量:

bool imagejpeg ( 资源 $image [, string $filename [, int $quality ]] )

默认为 75 通常应该没问题。

于 2013-06-25T18:54:26.423 回答