Återge Unicode-tilläggstecken i utdata PDF av Aspose.Cells

Återge Unicode-tilläggstecken i utdata PDF av Aspose.Cells

Följande skärmdump visar hur Aspose.Cells renderadesource excel-fil in iutgång PDF. Som du kan se har alla tre tilläggstecken i Unicode renderats på exakt samma sätt som Microsoft Excel.

todo:image_alt_text

Exempelkod

Du kan använda den här exempelkoden för att konverterasource excel-fil in iutgång 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");