> I immediately turned to conjure 

The conjure program need some attention to bring it in line with the latest
ImageMagick features.  However, you can do many inline operations on the
same image with the convert program.  For example,

  convert mybigassimage.jpg \( -clone 0 -resize 50% -write resize.jpg \) \
    \( -clone 0 -rotate 90 -write rotate.jpg \) null:

Add as many operations enclosed in braces as needed.

If you have many operations to perform on the same image and you have plenty
of disk space you can use the MPC image format which is expensive to create
but has near zero overhead when loading:

  convert mybigassimage.jpg mybigassimage.mpc
  convert -resize 50% mybigassimage.mpc resize.jpg
  convert -rotate 90 mybigassimage.mpc rotate.jpg

Add as many additional operations as needed.
_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users

Reply via email to