2

我压缩JPEG图像如下:

function convert_img($img_source) {
    $img_destination = $img_source;
    $max_width = 150;
    $max_height = 150;
    $src = imagecreatefromjpeg($img_source);
    list($width,$height) = getimagesize($img_source);
    $x_ratio = $max_width/$width;
    $y_ratio = $max_height/$height;

    if ($width <= $max_width && $height <= $max_height) {
        $tn_width = $width;
        $tn_height = $height;
        } elseif ($x_ratio * $height < $max_height) {
            $tn_height = ceil($x_ratio * $height);
            $tn_width = $max_width;
        } else {
            $tn_width = ceil($y_ratio * $width);
            $tn_height = $max_height;
    }

    $tmp = imagecreatetruecolor($tn_width,$tn_height);
    imagecopyresampled($tmp,$src,0,0,0,0,$tn_width,$tn_height,$width,$height);
    imagejpeg($tmp,$img_destination,80);
    imagedestroy($src);
    imagedestroy($tmp);
}

问题是我总是得到一个比 PageSpeed 建议的尺寸大一点的图像。

例如对于大小为 8.85KB 的图像,PageSpeed 建议我可以将此大小减小 356B。

如何压缩我的图像并使它们具有尽可能小的尺寸?为了使 PageSpeed 不建议任何内容并获得 100 分。

4

1 回答 1

1

压缩只能损害质量。音乐和视频也是如此。

imagejpeg($image, $destination_url, $quality);
于 2018-06-13T07:16:48.723 回答