Combining single tifs into one multipage tif

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
merve
Posts: 1
Joined: 2011-09-27T09:01:44-07:00
Authentication code: 8675308

Combining single tifs into one multipage tif

Post 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
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Combining single tifs into one multipage tif

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