vote up 1 vote down star

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

flag

54% accept rate

6 Answers

vote up 3 vote down check

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

link|flag
vote up 0 vote down

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

link|flag
It's not free. Neither are many other great products. – Daud Dec 3 '08 at 10:17
vote up -1 vote down

Apparently there's no free tool for this.

link|flag
Of course the is! ImageMagick (imagemagick.org/script/index.php) – lothar Apr 10 at 0:58
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

Use ImageMagick.

convert screenshot.tiff screenshot.pdf
link|flag

Your Answer

Get an OpenID
or

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