IM 6.6.9.8 Q16 Mac OSX tiger.
One of my scripts, huemap, seems to be failing and I think I have tracked down the problem to converting back from HSL to RGB using the following as a test:
According to http://www.imagemagick.org/Usage/color_ ... bine_other, the following should look exactly like the original rose: image.
convert rose: -colorspace HSL -separate \
-set colorspace HSL -combine -colorspace RGB rose_hsl_rgb.png
Same result with:
convert rose: -colorspace HSL -separate rose_%d.png
convert rose_0.png -colorspace HSL \
rose_0.png -compose CopyRed -composite \
rose_1.png -compose CopyGreen -composite \
rose_2.png -compose CopyBlue -composite \
-colorspace RGB rose_hsl_rgb.png
possible bug HSL to RGB IM 6.6.9.8 Q16
Re: possible bug HSL to RGB IM 6.6.9.8 Q16
We can reproduce the problem you reported and have a patch in ImageMagick 6.6.9-9 Beta available by sometime tomorrow. Thanks.
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: possible bug HSL to RGB IM 6.6.9.8 Q16
Thanks. This works fine in IM 6.6.9.9magick wrote:We can reproduce the problem you reported and have a patch in ImageMagick 6.6.9-9 Beta available by sometime tomorrow. Thanks.