I converted the HTML page in the first attachment to a PDF document like this:
// Initialize an HTML document from the file
var document = new HTMLDocument(inputPath);
// Initialize PdfSaveOptions
var options = new Aspose.Html.Saving.PdfSaveOptions();
// Convert HTML to PDF
Converter.ConvertHTML(document, options, outputPath);
After that the PDF document was converted to pdf format 2U. See the second attachment. To verify the resulting PDF I used VeraPDF. The attached XML contains an error “The glyph can not be mapped to Unicode”. Can I fix this?
011_HTML.zip (251.2 KB)
pdf_a_2u_out.zip (293.5 KB)