Can you guys list available PDF libraries to manipulate PDF files?

  • Is it freeware or open-source?
  • What language(s) it is available for?
  • What is it good for?
link|improve this question

45% accept rate
feedback

28 Answers

My favorite is iText: http://www.lowagie.com/iText/

It is java based, but there are several ports for the .NET framework one of which can be found here: http://www.ujihara.jp/iTextdotNET/en/

link|improve this answer
14  
iText and iTextSharp can no longer be used in commercial applications -- they've changed the license to AGPL, so any applications that you use iText with have to be available under the same license. If you want to use either of these libraries in a commercial application then visit iTextSoftware.com and buy a license (you have to contact them for a price). – Rowan Sep 4 '10 at 10:08
feedback

I've used Pdftk (PDF toolkit) for several different projects after learning about in the PDF Hacks book by O'Reilly (the book is recommended as well, even though it may be a bit out of date now).

Pdftk is basically a command line tool for manipulating PDFs, but I have used it in both client and server applications by shelling it out as an external process. The AccessPDF site also has a lot of other information on PDF libraries and toolkits, including the libraries that pdftk was built with.

Here is the feature description from the AccessPDF site:

 If PDF is electronic paper, then pdftk is an electronic staple-remover,
 hole-punch, binder, secret-decoder-ring, and X-Ray-glasses. Pdftk is a 
 command-line tool for doing everyday things with PDF documents. Keep 
 one in the top drawer of your desktop and use it to:

    * Merge PDF Documents
    * Split PDF Pages into a New Document
    * Decrypt Input as Necessary (Password Required)
    * Encrypt Output as Desired
    * Fill PDF Forms with FDF Data and/or Flatten Forms
    * Apply a Background Watermark
    * Report on PDF Metrics such as Metadata, Bookmarks, and Page Labels
    * Update PDF Metadata
    * Attach Files to PDF Pages or the PDF Document
    * Unpack PDF Attachments
    * Burst a PDF Document into Single Pages
    * Uncompress and Re-Compress Page Streams
    * Repair Corrupted PDF (Where Possible)

One thing I used pdftk to do was create a Windows form that a user could fill out that then merged the data into a pre-created PDF form and then save the filled out form - something that you can't do using just an PDF reader - you're supposed to need full blown Acrobat for that. That was a few years ago and there are probably many different solutions now, but pdftk is still a useful bag of tricks for manipulating existing PDFs.

Pdftk is open source (GPL'ed) and will run on just about anything.

link|improve this answer
2  
Pdftk uses iText and the license for iText has changed to AGPLv3. This means that any software built using iText has to offer the same license and cannot be used in commercial applications. The change to the license was introduced in version 5 of iText. So if you're using an older version, you are OK. But if you're using a newer version... then do some checking to see if you're still OK. – Rowan Sep 4 '10 at 10:13
feedback

All of these libraries allow you to manipulate PDF documents.

  • Quick PDF Library -- commercial / C, C++, Delphi, VB, PHP, ActiveX, and more.
  • PDFlib+PDI -- commercial / C, C++, Java, .NET, etc.
  • activePDF Toolkit -- commercial / ASP, VB, Visual FoxPro, etc.
  • PDF4Net -- commercial / .NET languages.
  • PDFTron PDFNet SDK -- commercial / .NET languages, JAVA, PHP, Ruby, C/C++, Phython, Objective C available on Win, Linux, Mac, Android, iOS, WinRT.
link|improve this answer
feedback

We use iText and iTextSharp for Java and C# (respectively).

The only issue (and it is minor) is that the documentation for the C# side (which is a port of the Java) is outdated and sparse. I find that the best thing is to keep the java documentation handy, and do a mental lookup (.setFont() [java] == .Font [C#]).

Other than that, it's a really well-thought-out and professional package.

For Python we use ReportLab, and power it with Cheetah, but I have less personal experience with that.

link|improve this answer
We also use iTextSharp, but I think it's really confusing with 0,0 being lower left instead of top! There's a bunch of other stuff I don't like as well, but we made a abstraction layer on top of it and now mostly everything is superb. (Though I've missed the possibility to add vector images, though I might just have missed something.) – svinto Feb 16 '10 at 18:30
4  
The iText license has been changed to AGPL, so you will no longer be able to use iText in commercial applications unless you purchase a license from iTextSoftware.com. – Rowan Sep 4 '10 at 10:09
feedback

I've used PDF::API2 in Perl for web dynamically creating PDF's in web apps as well as splitting, manipulating, inserting, removing pages. Pretty good for small to mediums size PDF's. PNG handing is slow.

I've also used the official libraries maintained by DataLogics which are uber powerful, but quite pricey. They have C, Java, and .Net APIs. With the C I have done a lot of manipulation like adding images text, searching, forms, etc.

PHP and Ruby have simple and free ones too, I think.

link|improve this answer
feedback

I've used both Aspose.PDF (for .NET) and ActivePDF and would recommend the Aspose library. I would stay away from ActivePDF.

link|improve this answer
feedback

For .NET we use the Open Source PDFSharp. It's worked well for us over the past three years.

From their FAQ:

PDFsharp is a .NET library for creating and modifying Adobe PDF documents programmatically. It is written in C# and can be used from any .NET language like VB.NET.

link|improve this answer
I'll second this suggestion. – Boydski Jun 10 '09 at 15:23
Not that this is a recent thread, but PDFSharp does not support recent versions of pdf files. It only supports versions 1.4 and earlier. – Mgrandjean Mar 13 at 20:13
feedback

The PDFBox and iText Libraries are FREE!

iText Sample HERE

PDFBox Sample HERE

-MarlonRibunal

link|improve this answer
PDFBox can go deeper than iTextSharp. – kenny Jan 20 '10 at 12:36
1  
iText/iTestSharp are no longer free (as in beer) – Bobrovsky May 22 '11 at 5:41
feedback

Tall Components PDF products. 100% .NET component. Great for C# or VB.Net. I have used the TallPDF.NET component for generating PDFs dynamically. I highly recommend them. Tall Components also has excellent customer service.

They are not free but they do have evaluation versions available for download. Without the license key TallPDF.NET puts a "Evaluation Version" string in the footer.

link|improve this answer
TallComponents also has PDFKit for manipulating existing PDF's and a host of solutions for displaying PDF. All 100% .NET. – Marnix van Valen Apr 7 '10 at 9:42
We have used TallComponents PDFControls for both generating, display and printing (rasterizing) both Fillable and Non fillable files. We specifically went with them in order to have fillable PDF reader control embedded inside our winforms application. – DevByDefault Sep 9 '10 at 21:17
feedback

I found this directory and compilation of high quality free PDF libraries. The directory contains java, .Net, PHP, Delphi, C/C++ list of PDF libraries.

link|improve this answer
feedback

ReportLab for Python.

  • Open Source for creating PDFs.
  • More available commercially.
link|improve this answer
it creates PDF, but can't 'manipulate' them. – Javier Oct 16 '08 at 20:22
feedback

We use DynamicPDF for creating, merging and manipulating pdfs. They offer libraries for .net and java.

link|improve this answer
feedback

Apple has PDFKit for Cocoa. Only available on Mac OS X and the iPhone OS, but I figured that I'd list it, for completeness sake. You can display, annotate, modify, and even create PDF documents from scratch with it.

link|improve this answer
2  
Correction: as of May 2010, PDFKit is not available on iPhone OS. – Ole Begemann Jun 1 '10 at 8:01
feedback

Our PDFTextStream product is a Java / .NET library for extracting text, metadata, form data, and other bits from PDF documents. It's got a pretty comprehensive feature set, and is extraordinarily easy to integrate into apps.

link|improve this answer
feedback

ABCpdf.NET from webSupergoo.

  • Not open source, but 'free' (as in beer) licenses available.

  • .NET and COM interfaces enable support for multiple languages. Documentation includes numerous examples in C# and Visual Basic.

  • Good for MS Windows server environments, or standalone applications. Fully multi-threaded, ABCpdf can be used flexibly from within ASP / ASP.NET. Imports and exports more image formats than you can shake a stick at, HTML, and Office documents too.

ABCpdf Feature Chart...

link|improve this answer
feedback

We've been using PoDoFo which is a great C++ PDF library. It's open source and free (as in beer).

From their site:

The PoDoFo library is a free, portable C++ library which includes classes to parse PDF files and modify their contents into memory. The changes can be written back to disk easily. The parser can also be used to extract information from a PDF file (for example the parser could be used in a PDF viewer). Besides parsing PoDoFo includes also very simple classes to create your own PDF files.

link|improve this answer
feedback

FPDF is a great library for generating PDF files with PHP.

link|improve this answer
feedback

Docotic.Pdf library for .NET

The library has no external dependencies and is written in C#. Docotic.Pdf comes with commercial and free licenses.

The library can be used to:

  • Create documents from scratch (PDF and PDF/A)
  • Read, modify and merge PDF documents
  • Extract text and images
  • Create and fill PDF forms
  • Add and embed fonts (Type and TrueType)
  • Draw multilingual text (full Unicode support)
  • Add images in different formats
  • Encrypt documents and setup permissions

Here is some samples for common PDF tasks.

Disclaimer: I work for Bit Miracle.

link|improve this answer
feedback

I've used and had good luck with PDF Clown in C#. There's a version for Java, too.

It's free and open source...

http://www.stefanochizzolini.it/en/projects/clown/index.html

link|improve this answer
feedback

Gnostice makes several PDF libraries.

  • NET
    • PDFOne .NET - PDF document, viewer, printer and bookmarks components
  • Java
    • PDFOne (for Java) - PDF document, viewer (with integrated bookmarks), and printer components
  • Delphi/C++Builder
    • PDFtoolkit VCL - PDF document, viewer, printer, bookmarks and search panel components
    • eDocEngine VCL - PDF creator component
    • XtremePDFConverter VCL - intelligent PDF-to-RTF converter library

PDFOne .NET, PDFOne (for Java) and PDFtoolkit have several common functions such as PDF processing, editing, viewing, printing, encrypting, annotating, searching, redaction, encryption, digital signing, etc.

PDFOne .NET and PDFOne (for Java) can create new PDF documents from scratch.

PDFtoolkit VCL works exclusively on existing documents and does not create PDF documents. You can use eDocEngine VCL for creating PDFs in Delphi/C++Builder. (eDocEngine generates documents in 17 other formats.)

XtremePDFConverter VCL is a powerful VCL component for intelligently converting PDF to easily editable Word RTF documents. XtremePDFConverter uses artificial intelligence and also allows inputs from the user code to accurately recognize and convert paragraphs, tables, bullets, numbered lists, newspaper columns, and other standard document formatting features.

link|improve this answer
feedback

I've used Aspose.Pdf in the past and liked it a lot. It was easy to use and worked well. I used it to generate monthly bank statements for thousands of accounts.

  • It's not free
  • You can supply it XML that defines your layout and content and it spits out a PDF byte stream.
  • Available for .Net and Java
link|improve this answer
feedback

Big Faceless Java PDF Library

  • It's not free
  • Available for Java
  • We use it mainly to create PDF's from PDF Forms but it has many features
link|improve this answer
feedback

Just for the record...

Adobe PDF Library SDK

http://www.adobe.com/devnet/pdf/library/

Does anyone use it?

link|improve this answer
1  
It's overpriced for mere mortals. – badcat Nov 27 '10 at 13:21
feedback

We use iText. It's an extremely powerful library with a large community. There is also iText in Action available.

link|improve this answer
feedback

Gnostice has a commercial library that support several languages including Delphi, C++ and .NET.

link|improve this answer
feedback

TCPDF.... godd for PHP

link|improve this answer
feedback

Just adding more items to the list (commercial):

Amyuni PDF Converter (A PDF printer driver with a COM API for administration)

Amyuni PDF Creator (native library using COM/ActiveX)

Amyuni PDF Creator .Net (managed version).

link|improve this answer
feedback

i have used pdfbox it is good for text extraction. http://pdfbox.apache.org/ some text formatting information such as font-size and color can be obtained. documentation and samples are also available in the site. character wise manipulation of the text can easily be done by overriding protected void processTextPosition(TextPosition text) method of PDFTextStripper class. which would allow customized text extraction (topic and content separately in my case, not 100% accurate though)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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