While Converting HTML content as pdf document using webservice ,the style specified in html document would not apply in pdf document.
Please any one give the suggestion to apply style specified in html document.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Slavica MatijeviPosted Oct 7, 2014, 5:49 AM
Sarath here is another solution for converting your HTML files into PDFs in .NET:
DocumentModel.Load("Document.html",
new HtmlLoadOptions())
.Save("Document.pdf",
new PdfSaveOptions());
Its very straightforward way I believe.
Alex SmithPosted Aug 14, 2014, 3:32 AM
refer this article - Convert HTML to PDF with new plugin ,this method supports to convert the HTML page with rich elements, such as HTTPS, CSS3, HTML5, JavaScript to PDF without changing original layout..Hope helpful
Santosh UbalePosted Aug 13, 2014, 12:31 AM
http://www.codeproject.com/Articles/638514/Create-PDF-from-html-using-Csharp-Nustache-Mustach
"ACCEPT THIS ANSWER IF IT HELPS YOU" :)
Santosh UbalePosted Aug 13, 2014, 12:27 AM
1. Also read comments under this article
http://www.codeproject.com/Articles/7089/Generate-PDF-documents-from-a-HTML-page-using-ASP
2. Check Solution1
http://www.codeproject.com/Questions/425227/Html-to-PDF-conversion-using-csharp
"ACCEPT THIS ANSWER IF IT HELPS YOU" :)