possible transparency bug in IM 6.5.2-9
Posted: 2009-05-27T12:31:13-07:00
IM 6.5.2-9 Q16 Mac OSX Tiger:
I don't know if this is a bug or a change in the way you deal with transparency:
This used to work in previous versions (as I recall) to convert transparent black outside the inner white to opaque red:
convert \( -size 200x200 xc:black \) \
\( -size 100x100 xc:white \) \
-gravity center -compose over -composite \
-transparent black \
-fill red -opaque none \
tmp_alpha3_red.png
But now I have to add -alpha off
convert \( -size 200x200 xc:black \) \
\( -size 100x100 xc:white \) \
-gravity center -compose over -composite \
-transparent black \
-fill red -opaque none -alpha off \
tmp_alpha4_red.png
Is this a change in the way -fill color -opaque none is supposed to work or is this related to the new -alpha background change.
(see my reply viewtopic.php?f=3&t=13843)
I don't know if this is a bug or a change in the way you deal with transparency:
This used to work in previous versions (as I recall) to convert transparent black outside the inner white to opaque red:
convert \( -size 200x200 xc:black \) \
\( -size 100x100 xc:white \) \
-gravity center -compose over -composite \
-transparent black \
-fill red -opaque none \
tmp_alpha3_red.png
But now I have to add -alpha off
convert \( -size 200x200 xc:black \) \
\( -size 100x100 xc:white \) \
-gravity center -compose over -composite \
-transparent black \
-fill red -opaque none -alpha off \
tmp_alpha4_red.png
Is this a change in the way -fill color -opaque none is supposed to work or is this related to the new -alpha background change.
(see my reply viewtopic.php?f=3&t=13843)