I am attempting to do an HTML to PDF conversion on a linux system using the following code snippet:
Having previously used this code to set the Font Folders:HtmlLoadOptions html = new HtmlLoadOptions();html.setUseNewConversionEngine(true);com.aspose.pdf.Document doc = new com.aspose.pdf.Document(m_fileData.getSourceFileFullPath(), html);doc.save(outStream);
However, the conversion is not respecting the fonts whereas it does in the windows environment. Is there something else that I need to do to set up the fonts for conversion on linux?com.aspose.pdf.Document.addLocalFontPath(fontFolder);