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
Combining single tifs into one multipage tif
- 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
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
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