pdfimagemagicktiffghostscript

ImageMagick or GhostScript: convert a multi-page TIFF to a multi-page PDF


I need to convert a multi-page TIFF to a multi-page PDF. I have access to ImageMagick and GhostScript (in *nix environment). How do I do this? Thanks.

UPDATE:

It turns out that my test file was wrong (it didn't have multiple pages), which made me think my command was wrong. This seems to work for me: convert input.tif output.pdf


Solution

  • Use a tool called tiff2ps from the tool set provided by libtiff:

    http://www.libtiff.org/tools.html

    Once you have the tiff in ps format, you can call ps2pdf to convert to pdf, which is part of the ghostscript package in most linux distributions.