0

我已经制作了这段代码,如果找不到请求的图像,它将即时重新调整图像大小,然后将其存储。

唯一的问题是输出的 jpg 图像质量低。

我想知道是否需要更改某些内容以提高图像质量。

if (isset($_GET['size'])) {
    $size = $_GET['size'];
}

if (isset($_GET['name'])) {
    $filename = $_GET['name'];
}

$filePath = "files/catalog/" . urldecode($filename);

// Content type

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

// Get new sizes
list($width, $height) = getimagesize($filePath);

if ($_GET["name"] && !$size) {
    $newwidth  = $width * $percent;
    $newheight = $height * $percent;

} else if ($_GET["name"] && $size) {
    switch ($size) {
        case "thumbs":
            $newwidth  = 192;
            $newheight = 248;
            break;
        case "large":
            $newwidth  = 425;
            $newheight = 550;
            break;
    }
}

$resizedFileName = $filename; 
$resizedFileName = str_replace(".jpg", "", $resizedFileName) . ".jpg";
$resizedFilePath = "files/catalog/" . urldecode($resizedFileName);


if (!file_exists($resizedFilePath)) {
    // Load
    $thumb  = imagecreatetruecolor($newwidth, $newheight);
    $source = imagecreatefromjpeg($filePath);

    // Resize
    imagecopyresized($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);

    // Output
    imagejpeg($thumb, $resizedFilePath);
    //file_put_contents($, $binarydata);

    $imageContent = file_get_contents($resizedFilePath);
    echo $imageContent;

} else {
    $imageContent = file_get_contents($resizedFilePath);
    echo $imageContent;
}
4

3 回答 3

1

而不是 imagecopyresized() 您必须使用imagecopyresampled()并且imagejpeg()函数具有第三个可选参数,您可以指定质量。

于 2012-06-12T15:59:28.990 回答
0

可能是因为你用imagejpeg()错了,函数中的第二个变量代表质量百分比!

于 2012-06-12T16:00:15.060 回答
0

你想要imagecopyresampled()。通过丢弃不必要的像素来调整大小。resampled() 将平均结果并产生更平滑的结果。

于 2012-06-12T16:00:16.333 回答