up vote 104 down vote favorite
74
share [g+] share [fb]

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

link|improve this question
1  
We use o2Solutions' PDF4net. pdf4net.com Their customer service is top-notch. – Jon DellOro May 20 '10 at 5:11
feedback

protected by McDowell Mar 4 '11 at 16:37

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

45 Answers

1 2
up vote 16 down vote accepted

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|improve this answer
feedback

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

link|improve this answer
6  
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 '09 at 4:15
5  
The new license is a bit odd. PDFSharp is using the MIT license which is much less restrictive. – jcollum Jun 2 '10 at 20:33
7  
Open Source, but with a "viral" license. You are required to make your source code open source too if you distribute your app or use it on a web server. Or alternatively pay them to be released from the license terms. Price on application :( – MarkJ Apr 11 '11 at 16:09
show 3 more comments
feedback

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|improve this answer
2  
Dont forget to set the msOutput.Position = 0 before trying to read from the stream or attach it to email. – StingyJack Sep 30 '08 at 13:20
show 1 more comment
feedback

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

link|improve this answer
2  
Not just open source, but with a permissive licence too: MIT. Unlike some popular competitors which require you to make your app open source. – MarkJ Apr 11 '11 at 16:07
show 4 more comments
feedback

I've been relatively happy with Aspose.PDF.

link|improve this answer
show 1 more comment
feedback

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|improve this answer
2  
I've tried them all - ABCpdf is my favourite :-D – 5arx Sep 17 '10 at 10:43
feedback

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|improve this answer
show 2 more comments
feedback

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|improve this answer
show 1 more comment
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

I have tried all of those programs, but none of them worked for what I was doing.

I needed to export a complicated HTML report into a PDF format.

The only tool that I found that actually rendered the report from HTML and accurately rendered it (using the CSS styles, classes, and complicated divs and tables) was a tool called Winnovative HTML to PDF Converter for .NET

link|improve this answer
feedback

Just to be complete, often overlook You can actually use office automation and create word 2007 document and save it as PDF. If you are using older word version, you can print it to any PDF printer driver like PDFCreator or JawsPDF.

link|improve this answer
feedback

Not sure if Zack has solidified on anything with this particular need, but I've been working on a way to render RDL files (SSRS Report Files) without the need to deploy SSRS, as I had a few applications where I needed a great reporting format (SSRS Reports), but couldn't expect the end-users to deploy and manage SSRS... Using the 2010 version of the associated libs, you can export in Word, Excel, and PDF, so this should more than fulfill your need.

You can download the source from CodePlex.

Word of note: I haven't gotten into subreports to-date, and am looking to do that feature at some point. If anyone is interested in tackling it, please let me know.

link|improve this answer
feedback

I'd like to mention RazorTex, a small project I just started. It uses a very different approach than most other PDF tools suggested, I believe. Actual PDF creation happens through pdflatex. The 'views' are written using Razor.

Because of LaTeX, this is very powerful in terms of typesetting features and quality, but LaTeX has a steep learning curve. Free.

link|improve this answer
feedback

Docotic.Pdf library may be used to create PDFs in a .NET applications. It also can be used to extract text or images from PDF files and many other things.

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

Disclaimer: I work for Bit Miracle.

link|improve this answer
feedback

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|improve this answer
feedback

Crystal Reports can be programmed so that it outputs PDF files. Works perfect! I have developed a system that generates about 500 PDF per day for archiving. Crystal Reports even comes with Visual Studio so should be available for most. See example below:

using CrystalDecisions.CrystalReports.Engine;

ReportDocument    rptCust;
string            sDate_time;
string            sDestination_path;

CrystalDecisions.Shared.ExportOptions              myExportOptions;
CrystalDecisions.Shared.DiskFileDestinationOptions File_destination;
CrystalDecisions.Shared.PdfRtfWordFormatOptions    Format_options;

myExportOptions  = new CrystalDecisions.Shared.ExportOptions();
File_destination = new CrystalDecisions.Shared.DiskFileDestinationOptions();
Format_options   = new CrystalDecisions.Shared.PdfRtfWordFormatOptions();

sDate_time        = DateTime.Now.ToString("ddMMyyyyHHmmssff");
sDestination_path = sDestination_file + sPolicy_number + sPolicy_number1 + "-" + sDate_time + ".pdf";

File_destination.DiskFileName = sDestination_path;
myExportOptions               = rptCust.ExportOptions;

myExportOptions.ExportDestinationType = CrystalDecisions.Shared.ExportDestinationType.DiskFile;
myExportOptions.ExportFormatType      = CrystalDecisions.Shared.ExportFormatType.PortableDocFormat;
myExportOptions.DestinationOptions    = File_destination;
myExportOptions.FormatOptions         = Format_options;

rptCust.Export();
link|improve this answer
show 4 more comments
feedback

While probably overkill for the simple task of generating a PDF, ActiveReports has been generating PDFs since 1996 and is a very mature PDF generator. It has many advantages over a simplistic PDF library if you need to add data to your documents, it is interesting to target formats other than PDF, or you want a visual designer. Recently in version 6, we also added advanced PDF features like digital signatures and PDF timestamps in addition to the existing PDF security features (encryption, password, etc.).

link|improve this answer
feedback

I've used both Syncfusion's EssentialPDF and ceTe's DynamicPDF. Each has capabilities the other does not, so which is best to use for your specific situation depends heavily on what your PDF documents must contain.

link|improve this answer
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

PdfLib The fastest library I ever used for creating pdf.

link|improve this answer
feedback

I've been using iTextSharp coupled with Adobe LiveCycle Designer. Its very simple and easy to use. I have an entry on my blog about it - http://jesal.us/blog/index.php/2008/10/10/create-pdf-forms-using-itextsharp/

link|improve this answer
feedback

I have used Dynamic PDF with very good results thus far.

link|improve this answer
feedback
1 2

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