Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to generate PDF by passing HTML contents to a function. I have made use of ItextSharp for this but it does not perform well when it encounters Table and the layout just gets messy.

Is there any free library available ?

share|improve this question

closed as not constructive by casperOne Feb 16 '12 at 3:07

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

20 Answers

Try wkhtmtopdf. It is the best tool I have found so far.

share|improve this answer
13  
supports .NET ?? – Kiquenet Oct 28 '10 at 6:31
2  
it is a standalone executable. You can launch it as a process, passing a URL of the HTML document as argument. – Marek Nov 30 '10 at 7:50
3  
I've been trying to make .NET bindings (github.com/bamccaig/WkHtmlToPdfDflat), but I'm having trouble getting it to work (I can't even get it working using the C bindings directly from C). :\ – bamccaig May 17 '11 at 17:31
14  
@bamccaig I've got it already =) github.com/gmanny/Pechkin It exposes every usable function of the library and also has wrapper for use in multiple threads. And it's on NuGet. – Gman Jul 20 '12 at 8:22
2  
To use this in C# stackoverflow.com/questions/4651373/… – Lavinski Dec 19 '12 at 0:47
show 2 more comments

Most HTML to PDF converter relies on IE to do the HTML parsing and rendering. This can break when user updates their IE. Here is one that does not rely on IE:

http://www.essentialobjects.com/Products/EOPdf/Default.aspx

The code is something like this:

EO.Pdf.HtmlToPdf.ConvertHtml(htmlText, pdfFileName);

Like many other converters, you can pass text, file name, or Url. The result can be saved into a file or a stream.

share|improve this answer
3  
We have found this product (and importantly the support provided by Essential Objects) to be truly superb. Performance and memory usage is good for very large conversions and the quality of the output is unmatched. We switched from Syncfusion when IE9 broke their component and EO.PDF is superior in every way. Some gotchas to watch our for with other products: does it work with IE9 installed, transparent images, asian (rtl) fonts, image quality (many downscale), PDF size with images (does it use a balanced compression). – fubaar Aug 4 '11 at 11:19
Agreed- essential PDF was the best of over 10 that I tried. Support is fantastic. – Glinkot Nov 3 '12 at 7:13
2  
Is it a free library ? – Samir Adel Jan 16 at 11:05
it is not useful because you must purchase the library – jonbarlo Mar 25 at 20:06

Winnovative offer a .Net PDF library that supports HTML input. They offer an unlimited free trial. Depending on how you wish to deploy your project, this might be sufficient.

share|improve this answer
3  
Bear in mind that when we last checked winnovative was incompatible with IE9 (as they used the IE GDI rendering engine which was removed in IE9). So if you have IE9 installed on the machine you are using it, the conversion wouldn't work. They may have fixed that by the time you read this, but many of the commercial components used IE rendering engine and came unstuck with IE9 so it's worth checking. – fubaar Aug 4 '11 at 12:20

There's also a new web-based document generation app - DocRaptor.com. Seems easy to use, and there's a free option.

share|improve this answer

It depends on any other requirements you have.

A really simple but not easily deployable solution is to use a WebBrowser control to load the Html and then using the Print method printing to a locally installed PDF printer. There are several free PDF printers available and the WebBrowser control is a part of the .Net framework.

EDIT: If you Html is XHtml you can use PDFizer to do the job.

share|improve this answer

If you don't really need a true .Net PDF library, there are numerous free HTML to PDF tools, many of which can run from a command-line.

One solution would be to pick one of those and then write a thin wrapper around that in C#. E.g., as done in this tutorial.

share|improve this answer

Free code at Code Project

http://www.codeproject.com/KB/cs/Easy_PDF_Programming.aspx

share|improve this answer

evo html to pdf converter has a simple .NET API and produces very good results.

share|improve this answer

PDF Vision is good. However, you have to have Full Trust to use it. I already emailed and asked why my HTML wasn't being converted on the server but it worked fine on localhost.

share|improve this answer

I was also looking for this a while back. I ran into HTMLDOC http://www.easysw.com/htmldoc/ which is a free open source command line app that takes an HTML file as an argument and spits out a PDF from it. It's worked for me pretty well for my side project, but it all depends on what you actually need.

The company that makes it sells the compiled binaries, but you are free to download and compile from source and use it for free. I managed to compile a pretty recent revision (for version 1.9) and I intend on releasing a binary installer for it in a few days, so if you're interested I can provide a link to it as soon as I post it.

share|improve this answer
hi, can u provide a link and also a guide on how to use it with c# asp.net thanks – user287745 Aug 29 '10 at 6:28
static.persistedthoughts.com/htmldoc_1.9.1586-setup.exe Be aware that this is a command line program. You have to execute it from within your application to get it to work. You can find the documentation for its arguments and caveats from Chapter 4 on: easysw.com/htmldoc/documentation.php – enriquein Sep 1 '10 at 14:47

Ok, using this technologies....

The src can be downloaded from here it needs nant

share|improve this answer

Try this PDF Duo .Net converting component for converting HTML to PDF from ASP.NET application without using additional dlls.

You can pass the HTML string or file, or stream to generate the PDF. Use the code below (Example C#):

string file_html = @"K:\hdoc.html";   
string file_pdf = @"K:\new.pdf";   
try   
{   
    DuoDimension.HtmlToPdf conv = new DuoDimension.HtmlToPdf();   
    conv.OpenHTML(file_html);   
    conv.SavePDF(file_pdf);   
    textBox4.Text = "C# Example: Converting succeeded";   
}   

Info + C#/VB examples you can find at: http://www.duodimension.com/html_pdf_asp.net/component_html_pdf.aspx

share|improve this answer
5  
I tried it. Don't use it. It does not render the HTML well. – Gaurav Nov 12 '10 at 9:36

I used ExpertPDF Html To Pdf Converter. Does a decent job. Unfortunatelly, it's not free.

share|improve this answer
does ExpertPDf have an option for water marking the documents ? – user1799214 Apr 26 at 11:42

ABCpdf.NET (http://www.websupergoo.com/abcpdf-5.htm)

We use and recommend.

Very good component, it not only convert a webpage to PDF like an image but really convert text, image, formatting, etc...

It's not free but it's cheap.

share|improve this answer
We've used this for a couple years and have found it to be quite painful to use. Poor support, very finicky as a result of its wrapper around the IE rendering engine, poor image quality and compression, limited ability to customize the request made to handle some more advanced usage scenarios (like supplying cookies and request headers). I suppose how well it works is subject to what you need it to do. – HackedByChinese Jan 11 '12 at 0:55
2  
+1 for ABCPdf. The previous commenter must not have talked to the same support folks I did - they always wrote me right back and always had a solution for any issues we had. They now support using Gecko as the rendering engine instead of IE. You can choose the one you want at run-time. ABC lets you do literally anything that PDF lets you do. – Steve Feb 22 '12 at 17:22
2  
too expensive and poor support. I do not recommend abcPDF at all. – Vivek Aug 25 '12 at 20:30
-1 for just posting my personal opinion/experience.... ? – Christophe Trevisani Chavey Oct 20 '12 at 1:22

This shows an excellent example from CodeProject:

http://www.codeproject.com/KB/showcase/TallComponents.aspx

share|improve this answer

Web2PDFConvert has web API.

share|improve this answer

Here is a wrapper for wkhtmltopdf.dll by pruiz

And a wrapper for wkhtmltopdf.exe by Codaxy
- also on nuget.

share|improve this answer
Any docs or tutorials how to use them? there is only source code there without any documentation whatsoever – Burjua Jan 20 '12 at 13:27
1  
Download the code and take a look at the unit tests. That should give you some good usage samples. – snoopy Jan 20 '12 at 19:09
Doesn't really help, in fact I can't even make tests of the pruiz solution to work, it says No tests are run because no tests are loaded or the selected tests are disabled googling doesn't help either – Burjua Feb 1 '12 at 15:15
@Burjua this is commonly related to the version of the test runner you are using. However, try opening an issue at my github's project site and I'll try to help you.. – Pablo Ruiz García Oct 5 '12 at 13:28

You could give HTML2PDF a try. I haven't tried it myself though.

share|improve this answer
3  
why recommend it if you haven't tried it? – fogedi Jun 28 '12 at 17:57
@fogedi: At the time I wrote this there were little other options listed here... – Adrian Grigore Jun 29 '12 at 11:59

Found this open source solution. Looks promising!

PDFsharp

peace | dewde

share|improve this answer
7  
From the PDFsharp FAQ: "Can I use PDFsharp to convert HTML or RTF to PDF? No, and we do not plan to write such a converter in the near future." – Robert Groves Dec 17 '10 at 1:18
1  
That is unfortunate. – dewde Jan 12 '11 at 17:09

To convert HTML to PDF in C# use ABCpdf.

ABCpdf can make use of the Gecko or Trident rendering engines, so your HTML table will look the same as it appears in FireFox and Internet Explorer.

There's an on-line demo of ABCpdf at www.abcpdfeditor.com. You could use this to check out how your tables will render first, without needing to download and install software.

For rendering entire web pages you'll need the AddImageUrl or AddImageHtml functions. But if all you want to do is simply add HTML styled text then you could try the AddHtml function, as below:

Doc theDoc = new Doc();
theDoc.FontSize = 72;
theDoc.AddHtml("<b>Some HTML styled text</b>");
theDoc.Save(Server.MapPath("docaddhtml.pdf"));
theDoc.Clear();

ABCpdf is a commercial software title, however the standard edition can often be obtained for free under special offer.

share|improve this answer
66  
You should really write in all your answers that you work for websupergoo. From the faq: However, you must disclose your affiliation with the product in your answers. Also, if a huge percentage of your posts include a mention of your product, you're clearly here for the wrong reasons. All your answers have been about ABCpdf – jgauffin Oct 28 '10 at 6:37
1  
Ouch! I suggested ABCpdf because it's a component I'm familiar with. If a large percentage of my posts relate to PDFs, it's only because I refrain from contributing to topics outside my areas of interest. Apologies. – AffineMesh Feb 15 '12 at 10:03