如何使用 Python Wand 修复奇怪的 IHDR 属性?

How to fix strange IHDR properties with Python Wand?

我正在尝试生成格式与我正在使用的 RIP 软件兼容的 RGBA PNG 文件。问题是它不喜欢 Wand 生成的透明度数据。我有一个 RIP 软件喜欢的示例文件。我使用 Imagemagick "identify -verbose" 命令来检查已知良好文件的属性。我发现,尽管许多其他属性与我的文件相匹配,但 IHDR 属性却大不相同。在正确加载的文件中,我看到:

png:IHDR.bit-depth-orig: 8
png:IHDR.bit_depth: 8
png:IHDR.color-type-orig: 6
png:IHDR.color_type: 6 (RGBA)

This is the example file that loads properly (在 Chrome 中,透明背景看起来是黑色的)

当我检查使用 Wand 生成的文件的属性时,我看到:

png:IHDR.bit-depth-orig: 4
png:IHDR.bit_depth: 4
png:IHDR.color-type-orig: 3
png:IHDR.color_type: 3 (Indexed)
png:PLTE.number_colors: 8

This is the example file that FAILS to load properly (在 Chrome 中,透明背景看起来是黑色的)

我正在使用:

ImageMagick 7.0.8-12 Q16 x86_64 2018-10-23
Wand==0.4.4

绘制此文件的代码在打印机测试图案的透明背景上创建了三个彩色框。这是:

from wand.image import Image
from wand.color import Color
from wand.drawing import Drawing

depth   = 32
max_dpi = 300
width   = 600
height  = 600

big_square_color    = Color('blue') #Color('transparent')
med_square_color    = Color('red')
small_square_color  = Color('green')
background_color    = Color('transparent')

# with Image(width=width, height=height, resolution=max_dpi, depth=depth, background=background_color) as source_img:
with Image(width=width, height=height, resolution=max_dpi, background=background_color) as source_img:
    source_img.depth  = 8
    with Drawing() as draw:

        # Draw a big box in the middle
        draw.stroke_color = draw.fill_color = big_square_color
        draw.rectangle(left=(width/16), top=(height/16), right=width-(width/16), bottom=height-(height/16))

        # Draw a smaller box in the middle
        draw.stroke_color = draw.fill_color = med_square_color
        draw.rectangle(left=(width/8), top=(height/8), right=width-(width/8), bottom=height-(height/8))

        # Draw the smallest box in the middle
        draw.stroke_color = draw.fill_color = small_square_color
        draw.rectangle(left=(width/4), top=(height/4), right=width-(width/4), bottom=height-(height/4))

        draw(source_img)

    source_img.format   = 'png'
    source_img.units    = 'pixelspercentimeter'
    source_img.colorspace  = 'srgb'
    source_img.type     = 'truecolor'
    source_img.alpha_channel = True

    source_img.save(filename='output.png')

查看 Imagemagick 和 Wand 的文档,我没有看到强制 IHDR 值的方法。有谁知道更改 Wand.Image 对象的属性以获得 IHDR.color_type:6 和 png:IHDR.bit_depth:8?

的方法

马克的评论是正确的。 PNG 编码器认为 image-data 不足以证明 RBGA 颜色类型的合理性,因此它 优化了 使用 INDEXED 调色板的图像。将 PNG32: 协议作为出站文件名的前缀,或设置 source_img.format = 'PNG32' 应该有效。

Looking through the documentation for Imagemagick and for Wand I don't see a way to force the IHDR values.

Anthony 的 Usage docs covers this, but reads more in a "Oh by the way" comment. Wand's documentation 最近开始暗示委托协议,但我同意,这也可以在该主题上使用更好的细节/覆盖范围。这两份文件都没有过多关注 IHDR(图像 header),因此这可能不是最好的 key-term 搜索。