I am struggling to find a best way to generate PDF files from HTML in azure website. I tried iTextSharp but it doesn't format the pdf very well and also hasn't got support for most of the CSS3/HTML5 features. I also had a look at the paid options which are given below:
http://www.winnovative-software.com/html-to-pdf-converter-azure.aspx
http://www.hiqpdf.com/
http://www.evopdf.com/
All of those one supports the latest features of CSS3/HTML5 but that also require s to setup the cloud service on Azure which would basically do all the processing as Azure websites runs in a restricted environment.
There is another tool which is Wkhtmltopdf which is available for free. I have got it working on my local and it does a good job in parsing the HTML. But I am not too sure how can I get that one running as Azure cloud service ? I think I would need to generate a package from the visual studio and deploy it to Azure ?
Any help or ideas are welcome