vote up 2 vote down star
5

What's the best .Net PDF editing library available, and why?

It needs to be used on an IIS web-server. Specifically, I need to edit a PDF which was generated by reporting services.

Factors I'm interested in:

  1. Speed
  2. Memory Consumption
  3. Price
  4. Quality of documentation
  5. Library stability
  6. Size of library
  7. Whatever else you think is important
flag

6 Answers

vote up 7 vote down check

Have a look at iTextSharp. iTextSharp is a port of the iText , a free Java-Pdf library.

To quote iText:

You can use iText to:

  • Serve PDF to a browser
  • Generate dynamic documents from XML files or databases
  • Use PDF's many interactive features
  • Add bookmarks, page numbers, watermarks, etc.
  • Split, concatenate, and manipulate PDF pages
  • Automate filling out of PDF forms
  • Add digital signatures to a PDF file
  • And much more...
link|flag
I'm curious about the performance of a ported assembly. Do you have enough experience to answer whether this is an issue? – harley.333 Oct 15 '08 at 17:44
Sorry, only used it to add variable watermark to a fixed PDF with no performance requirements... – gimel Oct 15 '08 at 17:52
I've used it extensively, and it is pretty fast. I don't know how fast it is compared to the original Java library though. I've only ever worked with the .Net version. It's noticeably faster than some of the other commerical native libaries out there. – Troy Howard Oct 16 '08 at 20:15
vote up 2 vote down

I've researched quite a few tools that aren't offered specifically by Adobe, and the two that come to mind right away are Atalasoft's DotImage and LEADTools. They are both rather pricy, but provide server licensing and use the ultra-fast C++ GDI libraries.

There's a freeware .Net library called PDFSharp that uses .Net native GDI+, so it's slower and memory intensive. But then again, it's free.

link|flag
PDFSharp is fine if your app just needs to output a PDF, like in a "Save as PDF" situation. It sucks for creating PDFs in large quantities. – Robert S. Oct 15 '08 at 14:19
We were attempting to use it for large-scale TIFF conversions to PDF and have run into memory issues occasionally. I agree, it works well for smaller-scale stuff. – AJ Oct 15 '08 at 14:28
I wouldn't recommend LEADTools, unless they've improved their API since version 14-ish. – Will Oct 15 '08 at 15:32
vote up 0 vote down

I don't know if it's the best, but I use PDF-Writer.NET, for which I paid $89. I have used it in several production applications. I like it because it's easy to set up and use, and it doesn't require a lot of coding, which makes it easier for new developers to ramp up on it.

Before that I was hacking together PDFs using an open source library and the Acrobat interop DLLs. That was rough.

link|flag
what was the open source library, so I can avoid it? – harley.333 Oct 15 '08 at 14:22
PDFSharp, which isn't bad, but didn't suit my needs. – Robert S. Oct 15 '08 at 16:38
vote up 0 vote down

check out aspose. nice api, well documented, light footprint.

http://www.aspose.com/categories/file-format-components/aspose.pdf-for-.net-and-java/default.aspx

link|flag
vote up 0 vote down

not sure about the pdf part but Aspose has a library for pdf, i've used their word library for generating word documents. their documentation is very decent in my oppinion

http://www.aspose.com/categories/file-format-components/aspose.pdf-for-.net-and-java/default.aspx

link|flag
vote up 0 vote down

I've used http://www.tallcomponents.com/ mainly to fill in pdf forms and then flatten the pdf. Seems to work fine. I haven't had any issues.

link|flag

Your Answer

Get an OpenID
or

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