tags:

views:

100

answers:

5

Does anyone know of a good .NET library to convert TIFF files, that may be multi-page, to PDF files?

The TIFF files are stored on a file share, and the PDF files need to be stored in the same location as the TIFF file.

The tool is supposed to be used for converting high volumes of TIFF files.

+2  A: 

DotImage sounds like it would work for you.

Wil
A: 

Vintasoft http://www.vintasoft.com

Jerod Houghtelling
+1  A: 

Sam Leffler's libtiff ships with various commandline utilities. One of these, tiff2pdf.exe converts TIFFs (including multipage TIFFs) to PDF.

Isn't that an option?

pipitas
Definitely, thanks.
Palle Agermark
+1  A: 

You can try our LibTiff.Net library for this. It's free and open-source (BSD License) and comes with tiff2pdf utility that probably does exactly what you need.

Bobrovsky
The links doesn't work. The correct link seems to be http://www.bitmiracle.com/libtiff/But thanks anyway it looks good :-)
Palle Agermark
It's strange. Just checked - both links work well for me.
Bobrovsky
A: 

The PDF Vision .Net is C# library to convert TIFF to PDF. This is commercial dll, it cost 150 USD.

SautinSoft.PdfVision v = new SautinSoft.PdfVision();
v.ConvertImageFileToPDFFile(@"d:\file.tif", @"d:\file.pdf");
Maximus