vote up 39 vote down star
35

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

flag

38 Answers

prev 1 2
vote up 1 vote down

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|flag
show 2 more comments
vote up 1 vote down

PdfLib The fastest library I ever used for creating pdf.

link|flag
vote up 1 vote down

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

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

link|flag
vote up 1 vote down

Hi,

I am using ExpertPDF Html To Pdf Converter. It has full html/css support. Even the most complex html pages are converted perfectly to pdf.

Thanks, John

link|flag
vote up 3 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
show 1 more comment
vote up 1 vote down

PDF Duo .Net is a small but very effective component for converting HTML to PDF.

link|flag
vote up 1 vote down

I advice you try PDF Metamorphosis .Net, it can be used in any .Net application to:

  • export HTML to PDF
  • export RTF to PDF
  • Split and Merge PDF documents

This is 100% C# solution, can be used everywhere in .Net.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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