Hi,
We have some HTML with CSS styles and an embedded SVG which we want to convert to PDF.
We are using just creating a new Document:
public void WriteToPDF(Stream streamToWriteTo)
{
Document document = new Document(new MemoryStream(Encoding.UTF32.GetBytes(_htmlTemplateText)));
document.Save(streamToWriteTo, SaveFormat.Pdf);
}
This does not render styles or embedded SVG’s however.
Is this just a limitation of the rendering engine?
Is there a list of the limitations of converting HTML to PDF with Aspose somewhere?
Nick