Page 1 of 1

The action of the convert command has changed from v6.2.8.

Posted: 2013-02-26T19:23:18-07:00
by nakazawa
I did version up ImageMagic from v6.2.8 to v6.8.3 at my server.
The action of the convert command has changed from v6.2.8.

convert TMPL.PNG input.png MASK.PNG -composite out.jpg

http://imgur.com/a/TSRXX

(current version's output)
http://imgur.com/r2S2Irg

(v6.2.8's output)
http://imgur.com/IriZxWk

I realized this change is from v6.2.9-2.
(v6.2.9-1 is same action with v6.2.8.)

How make same image with v6.2.8 by current version?

Re: The action of the convert command has changed from v6.2.

Posted: 2013-02-26T20:19:54-07:00
by fmw42
This is close without your mask. Note I could not download the full resolution version of your input. So I had to use the viewable images for which the input was JPG and not PNG

convert NBXqivb.jpg m7fN0BJ.png \( -clone 1 -negate \) -alpha off -compose plus -composite result.jpg

(convert input TMPL \( -clone 1 -negate \) -alpha off -compose plus -composite result.jpg


If on windows:

convert NBXqivb.jpg m7fN0BJ.png ( -clone 1 -negate ) -alpha off -compose plus -composite result.jpg

Re: The action of the convert command has changed from v6.2.

Posted: 2013-02-27T04:27:55-07:00
by nakazawa
Thank you from my heart :)