Answers for "convert html to pdf c#"

C#
1

convert html to pdf c#

var htmlContent = String.Format("<body>Hello world: {0}</body>", DateTime.Now);
var pdfBytes = (new NReco.PdfGenerator.HtmlToPdfConverter()).GeneratePdf(htmlContent);
//https://www.nrecosite.com/doc/NReco.PdfGenerator/
Posted by: Guest on July-30-2021

Code answers related to "convert html to pdf c#"

C# Answers by Framework

Browse Popular Code Answers by Language