Renderizza i caratteri supplementari Unicode nell'output PDF per Aspose.Cells

Renderizza i caratteri supplementari Unicode nell’output PDF per Aspose.Cells

Lo screenshot seguente mostra come Aspose.Cells ha reso il filefile excel di origine dentrouscita PDF. Come puoi vedere, tutti e tre i caratteri supplementari Unicode sono stati resi esattamente come da Microsoft Excel.

cose da fare:immagine_alt_testo

Codice d’esempio

È possibile utilizzare questo codice di esempio per convertirefile excel di origine inuscita PDF.

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