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

link|improve this question

74% accept rate
feedback

7 Answers

up vote 3 down vote accepted

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

link|improve this answer
feedback

Use ImageMagick.

convert screenshot.tiff screenshot.pdf
link|improve this answer
feedback

LibTiff.Net library and tiff2pdf utility (comes 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.

link|improve this answer
feedback

Persist software's ASPPDFlib.dll might be of your help. http://www.asppdf.com/download.html

link|improve this answer
It's not free. Neither are many other great products. – Daud Ahmad Dec 3 '08 at 10:17
feedback

Look into PDF Creator http://www.pdfforge.org/products/pdfcreator

I know you can script it, but I don't know if you can do anything with it via ASP.NET. Either way it couldn't hurt to look.

link|improve this answer
feedback

I've had to do this in asp.net before (actually JPG to PDF but close enough...) I use ImageMagick and shell out to it. I know its not native c# code, but its free and it works brilliantly. Just run a command line like this:

cmd /c convert "c:\blah\original.tiff" "c:\blah\destination.pdf"

The reason i use the 'cmd /c' is that without it, i have problems with System.Diagnostics.Process.Start messing up the arguments.

link|improve this answer
feedback

Apparently there's no free tool for this.

link|improve this answer
1  
Of course the is! ImageMagick (imagemagick.org/script/index.php) – lothar Apr 10 '09 at 0:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.