vote up 39 vote down star
35

Please recommend a good library for programmatically creating PDF documents in .NET applications. Thanks.

flag

38 Answers

1 2 next
vote up 4 vote down check

Just for completeness - if you represent your data in xml, you can apply an xslt to it and run it through nFOP, and generate a PDF that way.

link|flag
vote up 25 vote down

Have you looked at http://sourceforge.net/projects/itextsharp/? I have used the Java version on a project and it worked well.

link|flag
1  
I managed to get to grips with this for easy to moderate PDFs very quickly (a couple of hours). Be warned though the API sucks like it was written in the 80s, but it's not a showstoper. – objektivs Apr 15 at 4:15
show 1 more comment
vote up 18 vote down

I've used ITextSharp to create PDF's from .net. It is the .net port of the open source IText. It has the capability to create the PDF from scratch. But doing that would require formatting the entire document. Instead I created a PDF Form, then filled in the fields of the form using a small class. The most difficult time I had was figuring out how to get the the filled in form into the actual memory stream. The work of the class is in the following function. I can give more details if someone wants them. The sourceforge url is: http://sourceforge.net/projects/itextsharp/

  Public Function GeneratePDF() As IO.MemoryStream  
        Dim pdfTemplate As PdfReader  
        Dim stamper As PdfStamper  
        Dim tempPDF As PdfReader
        Dim doc As Document
        Dim msTemp As MemoryStream
        Dim pCopy As PdfCopy
        Dim msOutput As New MemoryStream

        pdfTemplate = New PdfReader(m_FormName)

        doc = New Document
        pCopy = New PdfCopy(doc, msOutput)
        doc.Open()

        For Each pg As FormPage In FormPages
            msTemp = New IO.MemoryStream
            pdfTemplate = New PdfReader(m_FormName)

            stamper = New PdfStamper(pdfTemplate, msTemp)

            For Each fld As FormField In pg.Fields
                stamper.AcroFields.SetField(fld.fieldName, fld.fieldValue)
            Next
            stamper.FormFlattening = True
            stamper.Close()
            tempPDF = New PdfReader(msTemp.ToArray)
            pCopy.AddPage(pCopy.GetImportedPage(tempPDF, pdfTemplate.NumberOfPages))
            pCopy.FreeReader(tempPDF)
        Next
        doc.Close()
        Return msOutput
    End Function
link|flag
show 1 more comment
vote up 11 vote down

Try PDFsharp and MigraDoc, it is an open source PDF creation component written in .net

link|flag
show 1 more comment
vote up 10 vote down

I've been relatively happy with Aspose.PDF.

link|flag
show 1 more comment
vote up 5 vote down

There is also a product called ABCpdf from a company called WebSupergoo. There's a free license available as long as you link back to their site or you can buy a license and not have to link to them. I used the control for a web application which generated forms for a mortgage company and it worked very well.

link|flag
vote up 3 vote down

I've been using Siberix.

link|flag
vote up 3 vote down

I have used DynamicPDF on a few sites, with very good results.

link|flag
vote up 3 vote down

ComponentOne PDF™ for .NET

Essential PDF

PDF4NET

ExpertPDF Pdf Creator

PDFTechLib

PDFOne .NET

Dynamic PDF

PDFLib - As you can see there are several vendors in this space. I think that it all depends on how you intend to integrate it in your application. For instance a few years a go I developed and application in .Net utilizing PDFLib on account that the client wanted to create a web based application that created design proofs and also provided optimization for their digital print services. Looking back at the project I wish I would have known about Dynamc PDF's suite of products.

link|flag
show 1 more comment
vote up 3 vote down

You can also give Telerik Reporting a try. It can export to PDF as well.

link|flag
vote up 2 vote down

Here is a nice list of commercial solutions: http://www.411asp.net/home/assembly/document/pdf

link|flag
vote up 2 vote down

I've used Report .Net with some success. It's free and the code makes sense to me, which is almost as important.

link|flag
vote up 2 vote down

If you're going to use iTextSharp (or its original Java incarnation, iText), you owe it to yourself to find a copy of iText In Action: Creating and Manipulating PDF by Bruno Lowagie, the creator of iText. It's very well-written and contains great explanations for why PDF does things the way it does. (I have no financial interest; I just thought it was one of the better-written technical books I've read.)

link|flag
vote up 2 vote down

If you don't want to mess around in all the "PDF dirt" yourself then PDFTron is prety good. One draw back it is not free, although it is an easy to use .Net PDF library that will get you up and running quickly.

link|flag
vote up 2 vote down

We're using TallPDF from TallComponents and have had great success with it. Not sure what the other libraries uses, but it is using xslt as templates for the pdfs which makes it easy to adjust/update templates on a live server.

link|flag
vote up 2 vote down

I have had good experiences with PrinceXML. It generates a .PDF from a .HTML file, which sounds like a hack at first, but their rendering engine is very good. Passes acid2 and has good .svg support so you can include vector images instead of bitmaps to keep the .PDF relatively small (which is important when generating reports which need to be sent as an attachment).

Especially if you have in-house designers who speak html/css they will have no trouble at all creating a good looking .pdf, so IMO it's a perfect match if you're doing web applications.

link|flag
vote up 2 vote down

My company used Aspose.Pdf for XML and HTML to PDF conversion and it simply rocks. The documentation is very easy to operate and understand. Try its Evaluation Version and use all advanced PDF features programmatically in your .NET applications.

link|flag
vote up 2 vote down

I'm surprised that nobody has mentioned SQL Server Reporting Services.

I haven't used it in production, but it has seems to have quite a lot of nice features including a very good GUI report builder, extensibility through .NET, web services (SOAP) and web portal (WWW) interfaces, report generation on a schedule or on demand, report caching, e-mail reports (on demand or schedule) or view on-line, and can render to PDF, HTML, Excel, and Image.

link|flag
vote up 1 vote down

I've been using ActivePDF for years and it seems to be very stable and quite powerful. Simply draw out your fields in Acrobat pro and programmatically prefill them with text, images, just about anything.

link|flag
vote up 1 vote down

It would appear there is no shortage of choices.

Microsoft SQL Server Reporting Services can accomplish this, and exposes the functionality through an API you can code against.

link|flag
vote up 1 vote down

We use DynamicPDF from CeTe (http://www.cete.com/). You can use this to either render a PDF from scratch, or pull pages of content in from an existing PDF and draw over the top.

It also has a report designer that you can use with some data binding features to help automate things a little (although I haven't actually tried that bit yet!).

It's been quite simple to use and pretty trouble-free to date.

link|flag
vote up 1 vote down

The company that I work for is using Rubika from Solimar Systems. I believe that they also use itextsharp in there "PDFEngine". We create hundreds of pdfs with thousands of pages per month with this software.

link|flag
vote up 1 vote down

I haven't used it myself, but I've heard good things about Prince. There's a .Net interface available for it.

link|flag
vote up 1 vote down

We're using pdftron. works. not free.

link|flag
vote up 1 vote down

I highly recommend Ibex PDF Creator from Visual Programming Limited. It uses standard XML:FO to create high-quality PDF documents. The libary has many features, and the vendor provides excellent support. The tool is licensed per developer so you can redistribute it without any licensing concerns.

link|flag
vote up 1 vote down

Expanding on ActivePDF, if you have to make PDF files of Microsoft Office documents and you have a server you can install Microsoft Office on (i.e., a server in the cluster which isn't otherwise Internet connected) then ActivePDF's DocConverter is almost literally the only game in town. It's pretty easy to use and has lots of .NET assemblies to work with.

link|flag
vote up 1 vote down

PDFLib - I have not found PDF feature that could not be generated using PDFLib. OTOH I have not found a PDFLib feature that I could use without reading the documentation twice.

link|flag
vote up 1 vote down

I like to use GhostScript. It lets you convert PostScript files to PDF format. Plus it is free to use at no charge.

link|flag
vote up 1 vote down

I've also used DynamicPDF and it is an excellent product. Very easy to use, and it has a very object-oriented structure. It impressed the hell out of me. It has a boatload of features, including the ability merge together multiple PDF documents.

It's not free, but I think you should check out the trial.

Regards...

link|flag
vote up 1 vote down

I've used PDFWiter from DbAutotrack. It's dead cheap at $89 and it works like a charm See it here

-Edoode

link|flag
1 2 next

Your Answer

Get an OpenID
or

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