Click here to Skip to main content
15,879,326 members
Articles / Web Development / ASP.NET
Article

Pdfizer, a dumb HTML to PDF converter, in C#

Rate me:
Please Sign up or sign in to vote.
4.83/5 (28 votes)
17 Jan 20042 min read 529.9K   25.3K   178   76
This library converts simple HTML documents to PDF.

Introduction

This article presents a basic HTML to PDF converter: with this library, you can transform simple HTML pages to nice and printable PDF files.

The HTML cleaning is done with NTidy (see [1]), a .NET wrapper for the HTML Tidy library (see [2]). The PDF generation is done with iTextSharp, a PDF generation library (see [3]).

Transformation Pipe

Transforming HTML documents to PDF is a fairly complex task. Hopefully, there exists powerful tools on the web that could help me accomplish this.

Parsing HTML

The first problem to handle was that HTML is usually "dirty": the structure is usually not XML conformant and trying to parse HTML pages with the XmlDocument will usually lead to a failure.

To overcome this problem, I had to write a .NET wrapper around HTML Tidy (see [2]). HTML Tidy is a very useful application that takes "dirty" HTML and returns it cleaned as much as possible. The .NET wrapper exposes a DOM-like class structure so that you can use it much like XmlDocument.

Hence, with NTidy, we can safely parse HTML document.

Creating PDF

The PDF creation is done by iTextSharp (see [3]), a .NET library hosted on SourceForge, that gives you the tool to create PDF easily. Hence, the PDF creation problem is solved.

Reading, Traversing

With NTidy and iTextSharp on my toolset, I could start to create the generator. The generator works like this: it first reads the input with NTidy, then traverses the DOM tree and generates the PDF fragments with iTextSharp.

Quick Example

The library usage is done through the HtmlToPdfConverter class. Creating a PDF file is done through the following steps, as illustrated in the example:

  1. Create a converter,
  2. Open a new PDF file using the Open method,
  3. Add a chapter,
  4. Feed HTML to the converter,
  5. If you want another chapter, go to 3.
  6. When finished, close the PDF file by calling Close.
C#
// create converter
HtmlToPdfConverter html2pdf = new HtmlToPdfConverter();

// open new pdf file
html2pdf.Open(@"test");
// start a chapter
html2pdf.AddChapter(@"Dummy Chapter");
string html = ...;
// convert string
html2pdf.Run(html);
// add a new chapter
html2pdf.AddChapter(@"Boost page");
// read web page
html2pdf.Run(new Uri(@"http://www.boost.org/libs/libraries.htm"));
// close and finish pdf file.
html2pdf.Close();

What to expect and not expect

Don't expect too much from this tool, it will not work with complex HTML pages and will give fairly good results with simple HTML pages. Specially, tables are not yet supported.

Reference

  1. NTidy, a .NET wrapper around Tidy.
  2. HTML Tidy home page.
  3. iTextSharp, PDF generation tool.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Engineer
United States United States
Jonathan de Halleux is Civil Engineer in Applied Mathematics. He finished his PhD in 2004 in the rainy country of Belgium. After 2 years in the Common Language Runtime (i.e. .net), he is now working at Microsoft Research on Pex (http://research.microsoft.com/pex).

Comments and Discussions

 
Question"generated by the Pdfizer library.1" Pin
Crazy Joe Devola1-Oct-15 21:49
Crazy Joe Devola1-Oct-15 21:49 
QuestionIs this usable??? or waste of time too Pin
simpa23-Aug-12 22:47
simpa23-Aug-12 22:47 
AnswerRe: Is this usable??? or waste of time too Pin
simpa25-Aug-12 5:08
simpa25-Aug-12 5:08 
BugHaving some exception error when using web content. Pin
onelopez10-Jul-12 9:14
onelopez10-Jul-12 9:14 
GeneralRe: Having some exception error when using web content. Pin
Narendra Jarad21-Sep-12 21:56
Narendra Jarad21-Sep-12 21:56 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey15-Feb-12 23:04
professionalManoj Kumar Choubey15-Feb-12 23:04 
QuestionI couldnt convert the code, please help me with this. Convert the code to visual studio 2005 and Frameword 2.0 and give it to me back. Pin
Arivazhagan Sekar28-Sep-11 19:04
Arivazhagan Sekar28-Sep-11 19:04 
QuestionHTML to PDF code in article Pin
Dov Miller12-Sep-11 4:05
Dov Miller12-Sep-11 4:05 
GeneralMessage Closed Pin
18-Apr-10 16:17
Michael Janulaitis18-Apr-10 16:17 
GeneralRe: My vote of 1 PinPopular
scott.leckie2-Sep-10 12:19
scott.leckie2-Sep-10 12:19 
GeneralRe: My vote of 1 Pin
Ankur\m/25-Feb-11 20:42
professionalAnkur\m/25-Feb-11 20:42 
GeneralRe: My vote of 1 Pin
scott.leckie26-Feb-11 7:39
scott.leckie26-Feb-11 7:39 
GeneralRe: My vote of 1 Pin
Member 139774064-Jan-19 14:24
Member 139774064-Jan-19 14:24 
QuestionHow do you write the pdf to disk? Pin
Lawrence Botley24-Jul-09 0:04
Lawrence Botley24-Jul-09 0:04 
QuestionThe specified module could not be found. (Exception from HRESULT: 0x8007007E) Pin
Nikhil Prajapati15-Mar-09 21:26
Nikhil Prajapati15-Mar-09 21:26 
AnswerRe: The specified module could not be found. (Exception from HRESULT: 0x8007007E) Pin
Pierre Liétar6-Jul-09 4:21
Pierre Liétar6-Jul-09 4:21 
BugRe: The specified module could not be found. (Exception from HRESULT: 0x8007007E) Pin
JanBorup17-Nov-14 21:49
JanBorup17-Nov-14 21:49 
GeneralHtml TO PDF Pin
vinodkrebc6-Mar-09 19:56
vinodkrebc6-Mar-09 19:56 
GeneralRe: Html TO PDF Pin
Kurfuerstendamm17-Nov-13 23:38
Kurfuerstendamm17-Nov-13 23:38 
GeneralImages support Pin
merlinox30-Nov-08 23:57
merlinox30-Nov-08 23:57 
GeneralWhen i run the code i am getting HTML code insted of page UI Pin
Ram432125-Nov-08 0:16
Ram432125-Nov-08 0:16 
QuestionHTML to PDF Convertd, when the project its throws following error... Pin
rdssiva13-Nov-08 1:07
rdssiva13-Nov-08 1:07 
AnswerRe: HTML to PDF Convertd, when the project its throws following error... Pin
subho1007-Apr-11 18:35
subho1007-Apr-11 18:35 
GeneralTABLE and DIV Support Pin
Gokhan Mamaci25-Oct-08 6:27
professionalGokhan Mamaci25-Oct-08 6:27 
QuestionNo Spport Farsi Language ITextSharp.dll Pin
s_nazari@yahoo.com22-Oct-08 23:01
s_nazari@yahoo.com22-Oct-08 23:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.