tags:

views:

48

answers:

2

This has already been asked here, but I was looking for a solution that would work on Linux.. Is tiffcp the only way?

+2  A: 

Looks like ImageMagick can do it. The solution is essentially the same; call it from the command line.

Specifically, you want the -adjoin option (which is on by default). The command will look something like:

convert *.tiff my_combined_file.tiff
Chris B.
+1  A: 

Haven't tried it, but there is pylibtiff, a python wrapper for the libtiff library on which tiffcp is implemented.

Jukka Matilainen
I ended up using ImageMagick, since my application already depends on it.. Thanks all the same for your suggestion!
Joril