batch compose
-
- Posts: 38
- Joined: 2010-12-14T03:56:10-07:00
- Authentication code: 8675308
batch compose
i want to composite image in batch. Like i am designing the tshirt and when i complete the designing want to make a single image on tshirt. In this case i have more than 1 image it is not fixed. currently i am waiting for this
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: batch compose
composite and convert ... -compose ... -composite only work with two images at a time. If you have multiple pairs of image that you need to composite into separate resulting images, then you will likely need to write a script to loop over the pairs of images and composite them.
If you are trying to composite many images into one final image, then you can do that with
convert -background somecolor image1 image2 image2 image2 -flatten resultimage
see http://www.imagemagick.org/Usage/layers/
If you are trying to composite many images into one final image, then you can do that with
convert -background somecolor image1 image2 image2 image2 -flatten resultimage
see http://www.imagemagick.org/Usage/layers/