IM 7 magick logo: \( -size 640x480 gradient: \) -alpha off -compose copy_opacity -composite tmp.png Well, my gradient is some hand-drawn custom shape, and as far as I understand your command, this would create a generic gradient? And if you look at my uploaded pictures, I really want a pixelwise ...
Ok, this is the test-gradient.pgn (I hope it did not destroy alpha channel by uploading) https://imgur.com/v7BggBK Then this is the tmp.png https://imgur.com/v6tNBHF Both images do have an alpha channel with transparent regions, and I want to combine them, i.e. let the image of the woman fade to ...
Uuu-ha :) You're struggling less with imagemagick than with windows batch scripting ! I'd recommend learning some powershell commands... http://www.computerperformance.co.uk/powershell/ another hint is mogrify, which is meant for batch processing (without writing the loops yourself). But in the end ...
Hi, I used to combine one PNG image (with transparent pixels) with another matting image (to blend the image to transparent at the bottom). This command worked fine with IM 6.x convert tmp.png test-gradient.png -channel A -compose Multiply -composite out.png Now, I am just getting an almost white ...