Unicode Supplementary Zeichen im Ausgabe PDF durch Aspose.Cells rendern

Rendern von Unicode-Zusatzzeichen im Ausgabepdf von Aspose.Cells

Der folgende Screenshot zeigt, wie Aspose.Cells die Quellexceldatei in die Ausgabepdf gerendert hat. Wie Sie sehen können, wurden alle drei Unicode-Zusatzzeichen genau so gerendert wie von Microsoft Excel durchgeführt.

todo:image_alt_text

Beispielcode

Sie können diesen Beispiellcode verwenden, um die Quellexceldatei in die Ausgabepdf zu konvertieren.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Load your source excel file containing Unicode Supplementary characters
Workbook wb = new Workbook(dataDir + "unicode-supplementary-characters.xlsx");
// Save the workbook
wb.Save(dataDir + "RenderUnicodeInOutput_out.pdf");