Convert HTML to PDF
This package is huge because include Rotativa files for Windows, Linux and MAC.
Using this tool you can convert a HTML file to PDF file.
static void Main(string[] args)
{
var html = @"
<html>
<title>PDF</title>
<body>
<b>PDF Sample - Carlos dos Santos</b>
</body>
</html>";
var htmlToPdf = new HtmlToPDFCore.HtmlToPDF();
var pdf = htmlToPdf.ReturnPDF(html);
//pdf.Margins = new PageMargins(0,0,0,0);
FileStream fs = new FileStream("teste.pdf",FileMode.CreateNew);
fs.Write(pdf,0,pdf.Length);
fs.Close();
}
Windows, Linux, Microsoft Azure AppServices using Linux Service Plan, Docker Container
Feel free to use and contribute with this project.