Hi,
we did some evaluation tests. A simple static html2pdf conversion takes minutes and a peak of 3GB memory test.zip (26.5 KB)
. Is this normal.
class Program
{
static void Main(string[] args)
{
if (args.Count() > 1)
{
// Create HTML load options
HtmlLoadOptions htmloptions = new HtmlLoadOptions();
htmloptions.IsRenderToSinglePage = true;
htmloptions.IsEmbedFonts = true;
// Load HTML file
Document doc = new Document(args[0], htmloptions);
// Convert HTML file to PDF
doc.Save(args[1]);
Console.ReadLine();
}
}
}
Marcel