我正在尝试生成RGBA PNG文件,该文件的格式与我正在使用的RIP软件兼容。问题在于它不喜欢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中,透明背景看起来是黑色的)
当我检查通过魔杖生成的文件的属性时,我看到:
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的方法吗?
答案 0 :(得分:2)
马克的评论正确。 PNG编码器认为没有足够的图像数据来证明RBGA颜色类型的合理性,因此它使用INDEXED调色板优化了图像。在出站文件名前加上PNG32:
协议或设置source_img.format = 'PNG32'
应该可以。
在浏览Imagemagick和Wand的文档时,我看不到强制IHDR值的方法。
Anthony的Usage docs对此进行了介绍,但在“哦,哦” 注释中有更多读物。 Wand的documentation最近开始暗示委托协议,但我同意,这也可以在该主题上使用更好的细节/覆盖范围。这两个文档都没有引起对IHDR
(图像标题)的太多关注,因此这可能不是搜索的最佳关键术语。