Page 1 of 1

Combining single tifs into one multipage tif

Posted: 2011-09-27T09:06:24-07:00
by merve
Hello,
I searched but could not find,
what should i write on console to combine my single paged tif files into one tif file?
Also how should i change their names, like 0.tif, 1.tif, 2.tif ?

How can i be sure after combining that the pages are in the right order, or how can i know which page consists of what?

Also i can do this on Win 7 or Ubuntu, where do you advise to install?

Thanks

Re: Combining single tifs into one multipage tif

Posted: 2011-09-27T09:48:46-07:00
by fmw42
convert image1.tif image2.tif ... imageN.tif combined.tif

That should put each tiff file in the order listed as frames/pages of the combined.tif.

identify combined.tif

will list all the frames/pages. Numbering of frames/pages starts with [0].

To access any one frame/page,

convert combined.tif[0] ... frame1.tif

see
http://www.imagemagick.org/script/comma ... .php#stack (section on selecting frames)
http://www.imagemagick.org/Usage/files/#read_mods