Unicode Supplementary Zeichen im Ausgabe PDF durch Aspose.Cells rendern

Rendern von Unicode-Zusatzzeichen im Ausgabe-PDF durch Aspose.Cells

Der folgende Screenshot zeigt, wie Aspose.Cells die Excel-Quelldatei in das PDF-Ausgabe gerendert hat. Wie Sie sehen können, wurden alle drei Unicode-Zusatzzeichen genauso gerendert wie von Microsoft Excel durchgeführt.

todo:image_alt_text

Sie können diesen Beispielcode verwenden, um die Excel-Quelldatei in PDF-Ausgabe zu konvertieren.

// 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");