Page 1 of 1

Convert and append jpeg to a muti page tif file

Posted: 2007-03-20T15:34:42-07:00
by ssundare
We are using ImageMagick 6.3.2 on HP-UX

convert test1.jpg test2.jpg test3.jpg multipage.tif
The above command converts the 3 jpegs into a multipage tif file.

If now i want to convert test4.jpg and append to multipage.tif how can this be done using convert command.

I can do it as follows

convert test4.jpg test4.tif
convert test4.tif multipage.tif multipage_new.tif ( this requires use of new file name)

Is there a simpler straight forward approach to do this append?