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

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
nakazawa
Posts: 2
Joined: 2013-02-26T18:39:44-07:00
Authentication code: 6789

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

Post 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?
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

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

Post 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
nakazawa
Posts: 2
Joined: 2013-02-26T18:39:44-07:00
Authentication code: 6789

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

Post by nakazawa »

Thank you from my heart :)
Post Reply