Convert and append jpeg to a muti page tif file

Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Post Reply
ssundare

Convert and append jpeg to a muti page tif file

Post 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?
Post Reply