php - 使用 ImageMagick 压缩 PNG 图像

标签 php image-processing compression imagemagick

要压缩 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/

相关文章:

php - mysqli 免费结果未收到数据错误

php - 在将 Twitter 状态输出到网页之前,是否需要对其进行格式化?

php - 如何使用 linkedin v2 api 获取电子邮件地址?

python - 如何从图像的背景中删除感兴趣的区域?

python - Rawpy 原始图像模式

indexing - 压缩排序的整数

php - 使用 SoapClient 将 XML 输入发送到 WSDL

python - 从图像opencv python中删除背景颜色

docker - 如何在 docker 容器中压缩文件?

c++ - 如何压缩一个非重复数字大小为N位的序列?