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?
The action of the convert command has changed from v6.2.8.
- 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.
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
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.
Thank you from my heart