如何更改Png的值:IHDR.color-type-orig

时间:2018-03-15 10:17:23

标签: imagemagick imagemagick-convert graphicsmagick

GraphicsMagick识别原始图像的返回行

Png:IHDR.color-type-orig: 6

转换方法需要哪个参数,因此输出将为

Png:IHDR.color-type-orig: 3

1 个答案:

答案 0 :(得分:0)

Png:IHDR.color-type-orig: 3是调色板索引。来自w3 specs

  

每个像素都是一个调色板索引;必须出现PLTE块。

因此,要将RGBAlpha转换为Indexed,它可以像......一样简单。

convert rgba_source.png png8:index_output.png

convert rgba_source.png -type Palette index_output.png

可以通过...验证...

identify -verbose index_output.png | grep IHDR