Rendere i caratteri supplementari Unicode nel PDF di output con Aspose.Cells

Rende i Caratteri Unicode Supplementari nell’output PDF con Aspose.Cells

Lo screenshot seguente mostra come Aspose.Cells abbia reso il file excel di origine in PDF di output. Come si può vedere, tutti e tre i Caratteri Unicode Supplementari sono stati resi esattamente allo stesso modo come fatto da Microsoft Excel.

todo:image_alt_text

Puoi utilizzare questo codice di esempio per convertire il file excel di origine in PDF di output.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// The path to the documents directory.
String dataDir = Utils.getDataDir(RenderUnicodeSupplimentaryCharacterToPDF.class);
// Load your source excel file containing Unicode Supplementary
// characters
Workbook wb = new Workbook(dataDir + "unicode-supplementary-characters.xlsx");
// Save the workbook
wb.save(dataDir + "output.pdf");