[resolved] possible bug -channel IM 7

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

[resolved] possible bug -channel IM 7

Post by fmw42 »

Using IM 6.9.8.3 Q16 this works fine to change only the red channel:

Code: Select all

convert logo: -channel r -fill "gray(200)" -opaque "gray(255)" +channel tmp.png
But the same fails in IM 7.0.5.4 Q16 --- it seems to affect all channels:

Code: Select all

magick logo: -channel r -fill "gray(200)" -opaque "gray(255)" +channel tmp.png
Mac OSX SnowLeopard

(Workaround is to separate channels, process, then combine. But should not IM 7 work the same as IM 6 in this case?)
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: possible bug -channel IM 7

Post by snibgo »

Confirmed using v6.9.5-3 and v7.0.3-5 on Windows 8.1.
snibgo's IM pages: im.snibgo.com
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: possible bug -channel IM 7

Post by magick »

Thanks for the problem report. We can reproduce it and will have a patch to fix it in GIT master branch @ https://github.com/ImageMagick/ImageMagick later today. The patch will be available in the beta releases of ImageMagick @ http://www.imagemagick.org/download/beta/ by sometime tomorrow.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: possible bug -channel IM 7

Post by fmw42 »

This issue seems to be fixed in the latest beta as of today. (6.9.8.5 and 7.0.5.6)
Post Reply