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 ?
|
|
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.
|
Try wkhtmtopdf. It is the best tool I have found so far. |
|||||||||||||||||||||
|
|
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:
Like many other converters, you can pass text, file name, or Url. The result can be saved into a file or a stream. |
|||||||||||||
|
|
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. |
|||||
|
|
There's also a new web-based document generation app - DocRaptor.com. Seems easy to use, and there's a free option. |
|||
|
|
|
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. |
||||
|
|
|
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. |
|||
|
|
|
Free code at Code Project |
|||
|
|
|
evo html to pdf converter has a simple .NET API and produces very good results. |
|||
|
|
|
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. |
||||
|
|
|
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. |
|||||
|
|
Ok, using this technologies.... |
|||
|
|
|
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#):
Info + C#/VB examples you can find at: http://www.duodimension.com/html_pdf_asp.net/component_html_pdf.aspx |
|||||
|
|
I used ExpertPDF Html To Pdf Converter. Does a decent job. Unfortunatelly, it's not free. |
|||
|
|
|
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. |
|||||||||||||
|
|
This shows an excellent example from CodeProject: |
|||
|
|
|
Web2PDFConvert has web API. |
|||
|
|
|
Here is a wrapper for wkhtmltopdf.dll by pruiz And a wrapper for wkhtmltopdf.exe by Codaxy |
|||||||||||
|
|
You could give HTML2PDF a try. I haven't tried it myself though. |
|||||||
|
|
|
|||||||||
|
|
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:
ABCpdf is a commercial software title, however the standard edition can often be obtained for free under special offer. |
|||||||||
|