Home » Questions » Computers [ Ask a new question ]

Batch convert TIFF images to PDF?

Batch convert TIFF images to PDF?

Are there any free utilities that will batch convert TIFF files to PDF? I've tried PDF printers like PrimoPDF & CutePDF, but these seem to require a GUI click to confirm each filename.

Asked by: Guest | Views: 298
Total answers/comments: 2
Guest [Entry]

"You can try ImageMagick. I'm trying this on Linux, but it's available for Windows as well. I just have to type: convert example.tiff example.pdf and I get a PDF. With just a little batch magic, you should be able to easily convert a directory of tiff files to pdf.

Or, if you need all tiffs in the same PDF, you can do convert example1.tiff example2.tiff example.pdf."
Guest [Entry]

"Using ImageMagick as follows should also work:

convert ^
c:\your\current\directory\*.tif ^
c:\your\output\directory\allimagestogether.pdf"