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

From their site (Free Project On Google Code): http://code.google.com/p/dompdf/

dompdf is an HTML to PDF converter. At its heart, dompdf is (mostly) CSS2.1 compliant HTML layout and rendering engine written in PHP

I need to have the same functionality in an ASP.NET website. Is there any good free alternative that can work with ASP.NET. I tried iTextSharp in previous project but its HTML support is horrible.

I had to write special HTML for it. This cannot be the case for the current website because users are uploading HTML files on their own.

I also tried Google Documents .NET client library, but it's very unstable. Many times I get "BAD Request" then repeat the same request and it works.

-

Do you know a way to get HTML conversion to PDF through .NET with free tool? Or even a way to interface with this PHP library via .NET (given I host on shared hosting that enables full trust security, but no ability to install anything or such, although I may move to virtual server if it's worth).

share|improve this question

2 Answers

up vote 5 down vote accepted

wkHTMLtoPDF is probably what you're looking for. It's a very fast and accurate HTML to PDF converter including advanced paged media formatting such as headers and footers.

It's based on Webkit render engine, and totally cross-(scripting-)language since you call it as an external binary, suiting your need.

Our own (PHP) project is turning from DOMPDF to wkHTMLtoPDF for performance reasons. We've run benchmarks as a proof of concept : yet it's in french but quite self-explanatory.

share|improve this answer

Probably you've already over this issue or just forgot it altogether :D

Anyway, you might find this post handy if you still want to try it out: http://fci-h.blogspot.com/2008/03/save-as-pdf-using-c_06.html

It's not exactly HTML to PDF, but I guess HTML to doc is a lesser of a problem :)

share|improve this answer
Thank you. I had a VPS with inability to get Office license. I solved it by calling Google Docs. I created the document there, then downloaded it as PDF, and deleted it. However, Google Docs API is not reliable at all. Gives many random errors that you just retry the call and it works. – Mohamed Meligy Aug 14 '10 at 20:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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