Rendera Unicode Supplementary tecken i utmatning PDF med Aspose.Cells

Rendera Unicode Supplementära tecken i utdata-PDF med Aspose.Cells

Följande skärmbild visar hur Aspose.Cells renderade käll-Excel-filen till utdata-PDF. Som du kan se har alla tre Unicode Supplementära-tecken renderats exakt som gjorts av Microsoft Excel.

todo:image_alt_text

Exempelkod

Du kan använda följande exempelkod för att konvertera källa excel-filen till utdata 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");