setImageCompression(Im-6ren">
gpt4 book ai didi

php - 使用 ImageMagick 压缩 PNG 图像

转载 作者:可可西里 更新时间:2023-10-31 23:18:42 25 4
gpt4 key购买 nike

要压缩 JPEG 图片,我可以这样做:

$thumb = new Imagick();
$thumb->readImage("url");
$thumb->setImageCompression(Imagick::COMPRESSION_JPEG);
$thumb->setImageCompressionQuality(80);

但是,我还需要压缩 PNG 图像(保持 alpha 透明度)以减小尺寸。有没有办法用 ImageMagick 做到这一点?

最佳答案

pngquant 有效地量化或减少图像中的颜色数量,直到质量出现明显下降之前。你可以像这样在 ImageMagick 中尝试类似的东西......

首先,使用内置的 rose: 图像,检查图像中的颜色数 - 它是 3,019:

convert rose: -format %k info:
3019

然后制作一个 PNG 并检查大小 - 它是 6,975 字节

convert rose: rose.png
ls -l rose.png
-rw-r--r--@ 1 mark staff 6975 5 Sep 20:57 rose.png

enter image description here

现在将玫瑰色转换为 255 色并检查大小 - 它减少到 3,691 字节:

convert rose: -colors 255 rose255.png
ls -l rose255.png
-rw-r--r-- 1 mark staff 3691 5 Sep 21:02 rose255.png

enter image description here

现在将玫瑰转换为 64 种颜色并检查大小 - 降至 2,361 字节

convert rose: -colors 64 rose64.png
ls -l rose64.png
-rw-r--r-- 1 mark staff 2361 5 Sep 21:04 rose64.png

enter image description here

另一种优化或减小 PNG 文件大小的方法是使用 -strip 从图像中去除任何元数据 - 例如照片拍摄的日期和时间、相机和镜头型号、名称创建图像的程序以及版权和颜色配置文件。

此外,值得牢记...通常情况下,透明像素的颜色无关紧要,因为您看不到它们,但统一的东西通常压缩得更好。因此,在保存 PNG 文件时,使用 -alpha background 使所有透明像素都具有相同的颜色可能是个好主意。

示例

convert -size 512x512 xc:gray +noise random a.png                                      # create an image of random noise
-rw-r--r--@ 1 mark staff 1576107 6 Sep 11:37 a.png # 157kB

convert -size 512x512 xc:gray +noise random -alpha transparent a.png # recreate but make transparent
-rw-r--r--@ 1 mark staff 1793567 6 Sep 11:38 a.png # 179kB, extra transparency channel

convert -size 512x512 xc:gray +noise random -alpha transparent -alpha background a.png # make all transparent pixels black
-rw-r--r--@ 1 mark staff 1812 6 Sep 11:38 a.png # Presto!

关于php - 使用 ImageMagick 压缩 PNG 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32413523/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com