How Can I Programmatically Build a Multi-Page TIFF out of Many Single Page TIFFs, Using Python?

后端 未结 3 660
囚心锁ツ
囚心锁ツ 2021-01-18 05:27

I\'ve found, via Google, numerous people asking the same question, but no solutions. The Python Image Library (PIL) has tools for stepping through an already existing multi

3条回答
  •  天命终不由人
    2021-01-18 06:21

    You can use ImageMagick for this (available on Unix and Windows). A linux shell command would be

    $ convert *.tif multipage.tif
    

    where *.tif are all your individual tif files.

提交回复
热议问题