Hey all,
Bit of a noobish question here, but I'd like to know where each argument goes. For example, I spent hours finding a command that did something simple like masking an image with a black and white mask:
Code: Select all
convert foo.png mask.png -alpha off -compose copy_opacity -composite bar.png
Foo.png makes sense to be right after convert, because it's the image in question. What is mask.png doing there, though? I would have thought that it would make more sense to be after copy_opacity, because that's where I'm asking IM to use mask.png. Basically, when and how do I know where to put each argument? Is there something I'm missing?
Thanks in advance.