Re: multiple thumbnails

Fred Weinhaus <[email protected]> Wed, 27 Oct 2010 09:43:58 -0700
Newsgroups gmane.comp.video.image-magick.user
Message-ID <p06240800c8ee06971e9d@[192.168.1.2]>
You can do that easily enough. One way is:

convert image \
\( -clone 0 -resize ... -write image1 +delete \) \
\( -clone 0 -resize ... -write image2 +delete \) \
....
-delete 0 null:


see http://www.imagemagick.org/Usage/files/#write




>For a given image I need to generate thumbnails of several sizes.
>I am currently making multiple calls to convert.
>
>I want to confirm with the experts ...
>
>Q: Please confirm that there is no mechanism to fork the processing
>stream and generate multiple outputs from a single input file.
>