adhown
adhown

Reputation: 441

How To merge many tif files to single tif file?

I have so many tif files that I want to convert into a single one. I am on Ubuntu 11.04, how can I do it? and I was tried convert tif to single pdf, but I stuck when convert pdf to tif, I use ghoscript with this command :

gs -dNOPAUSE -q -g300x300 -sDEVICE=tiffg4 -dBATCH -sOutputFile=result.tif source.pdf

but the result it's not good. :( . any suggestion for my problem?

Thanks before.

Upvotes: 6

Views: 16662

Answers (2)

user4620160
user4620160

Reputation: 71

To install tiffcp use apt-get install libtiff-tools

Upvotes: 7

Dingo
Dingo

Reputation: 2765

use tiffcp

usage: tiffcp [options] input... output.tiff

for instance:

tiffcp *.tiff output.tiff

and you will have a resulting multipage tiff

then tiff2pdf (a wrapper for ghostscript)

usage:  tiff2pdf [options] input.tiff

Upvotes: 12

Related Questions