Page 1 of 1

Re: creating layers of tinted images

Posted: 2007-08-09T19:29:08-07:00
by anthony
All operators in IM generally effect ALL images in memory.
See IM Examples Basic Usage...
http://www.imagemagick.org/Usage/basics/#image_seq

However parenthesis allow you to keep images in a separate 'sequence' for separate processing (continue the above like.

the solution is thus...

Code: Select all

    convert image1.png -fill '#ff0000' -tint 100 \
               \( image2.png -fill '#00ff00' -tint 100 \) \
               -mosaic   output.png