You're right. I triedglennrp wrote:The "verbose" outputs show that your "transparent" PNG is color-type 2, and does not have
a tRNS chunk, so it's opaque. But it has 16-bit samples, so maybe GWS has trouble
reading 16-bit PNGs. The other output is 8-bit RGBA, which could be transparent but
only if any of the pixels have a non-255 alpha sample.
You could try adding "-depth 8" as the final option while writing the "transparent" one,
and see if the 8-bit result gets read properly.
Code: Select all
convert -density 300 "big image.pdf" -background white -flatten -alpha off -depth 8 result.png
Now that the crisis is over, let me ask a stupid, newbie question:
Since 8-bit color gives us 16M unique colors, which is way more than the human eye can discern, why go to 16-bit color?