Hi Marco,
Thanks for sharing the resource file.
I have tested the scenario using latest release of Aspose.Pdf for .NET 11.4.0 and I am unable to notice any issue. For your reference, I have also attached the output generated over my end. Please take a look.
[C#]
var htmlLoadOptions = new HtmlLoadOptions();<o:p></o:p>
var stream = new MemoryStream();
var writer = new StreamWriter(stream);
writer.Write(File.ReadAllText(@"C:\pdftest\RenderProblem\RenderProblem\NewHtml.html"));
writer.Flush();
stream.Position
= 0;
var doc = new Document(stream, htmlLoadOptions);
var output = new MemoryStream();
doc.Save(output,
SaveFormat.Pdf);
File.WriteAllBytes(@"C:\pdftest\RenderProblem\RenderProblem\HTMl_to_PDFouput.pdf", output.ToArray());