GraphicsMagick识别原始图像的返回行
Png:IHDR.color-type-orig: 6
转换方法需要哪个参数,因此输出将为
Png:IHDR.color-type-orig: 3
答案 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