Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating a multi-page TIFF with Python

Tags:

python

linux

tiff

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

like image 933
Joril Avatar asked Apr 14 '26 21:04

Joril


1 Answers

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
like image 183
Chris B. Avatar answered Apr 17 '26 11:04

Chris B.