bug or feature of -draw IM 6.5.4.-7 Q16

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

bug or feature of -draw IM 6.5.4.-7 Q16

Post by fmw42 »

Mac OSX Tiger IM 6.5.4.-7 Q16 (HDRI)

just wondering if this is a bug or just the way things need to work.

When I do:

convert -size 256x256 xc:black -fill white \
-draw "line 121,128 135,128" motion15.png

and then check the verbose info:

I see that there is a fully opaque alpha channel left on. Is there some reason for leaving an opaque alpha channel on and not have it automatically disabled?

This relates to the FFT blurring and deblurring and the need to use -alpha off before -compose minus in my scripts. Alternately, I will turn of the alpha channel on the image above before using it.
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: bug or feature of -draw IM 6.5.4.-7 Q16

Post by magick »

  • just wondering if this is a bug or just the way things need to work.
Drawing is performed in RGBA space and its up to the user to disable the alpha-channel with -alpha off if that is their preference.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: bug or feature of -draw IM 6.5.4.-7 Q16

Post by fmw42 »

OK. I guess because of the possibility of using -matte in the commands that you need to leave the alpha channel on. Makes sense.
Post Reply