Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Free tool or library to convert Tiff files to pdf in .Net [closed]

Does any one know of a free tool or library to convert multi page tiffs to pdf in Asp.Net 1.1?

like image 331
Malik Daud Ahmad Khokhar Avatar asked Dec 03 '08 08:12

Malik Daud Ahmad Khokhar


People also ask

Can you turn a TIFF into a PDF file?

Steps: Right-click the TIFF file, and press 'Save as PDF (Advanced…)' from the context menu. From the 'Merge All to one PDF in' section, choose any of the destination folder where the PDF file would be saved. E.g., Source Folder if you want to place the PDF in the same folder as that of the source TIFF file.


3 Answers

how about PDFSharp, or iTextSharp? I usually search sf.net first when looking for a free library.

like image 116
Tracker1 Avatar answered Oct 24 '22 22:10

Tracker1


LibTiff.Net library and tiff2pdf utility (comes in source code with the library) can be used to convert TIFF images to PDF documents in .NET

The library and the utility use .NET 2.0 but you probably will be able to build .NET 1.1 version without modifications. The library and utility are free and open source and their code doesn't use generics and other things absent from .NET 1.1.

Disclaimer: I am one of the maintainers of the library.

like image 44
Bobrovsky Avatar answered Oct 24 '22 23:10

Bobrovsky


Use ImageMagick.

convert screenshot.tiff screenshot.pdf
like image 1
lothar Avatar answered Oct 24 '22 21:10

lothar