This happens if I put two annotation of different colours.
The gif file remains 8 bit, while the png file is to 16 bit.
If I put two annotations in the same colour, both images produced (gif and png) are 8 bit.
This difference caused a transparency Issue in the program QLab 3 on Mac, where the 16bit png format
was not transparent anymore.
If I force the creation to 8bit (using -depth , the transparency issue in Qlab is resolved.
However the (hidden?) "upgrade" to 16 bit for png (and not for gif),... caused some confusion.
The code
Code: Select all
# result surprisingly in png of 16 bit, BUT gif of 8 bit
for e in png gif; do
convert -size 30x30 xc:none -annotate +0+30 "A" -fill orange -annotate +4+30 "C" \
target.${e} ;
identify target.${e} ;
done ;
# results in output
# target.png PNG 30x30 30x30+0+0 16-bit sRGB 687B 0.000u 0:00.000
# target.gif GIF 30x30 30x30+0+0 8-bit sRGB 16c 150B 0.000u 0:00.000
Code: Select all
# result in png of 8 bit, AND gif of 8 bit
for e in png gif; do
convert -size 30x30 xc:none -annotate +0+30 "A" -fill orange -annotate +4+30 "C" \
-depth 8 target.${e} ;
identify target.${e} ;
done ;
# results in
# target.png PNG 30x30 30x30+0+0 8-bit sRGB 638B 0.000u 0:00.000
# target.gif GIF 30x30 30x30+0+0 8-bit sRGB 16c 150B 0.000u 0:00.000
So the Issue I'm reporting (indicated a possible mishap in QLab), is only concerning the "unexpected" bit depthening for png in comparison to the gif result.
I'm using
greetings.OsX 10.10.5
ImageMagick via brew upgrade:
Version: ImageMagick 6.9.3-7 Q16 x86_64 2016-03-27 http://www.imagemagick.org