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
现在将玫瑰转换为 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
现在将玫瑰色转换为 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
另一种优化或减小 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!