Rendera Unicode Supplementary tecken i utdata PDF med Aspose.Cells for Python via .NET

Rendera Unicode Supplementary-tecken i utdata PDF med Aspose.Cells for Python via .NET

Följande skärmdump visar hur Aspose.Cells for Python via .NET renderade källa excel-filen till utdata PDF. Som du kan se har alla tre Unicode Supplementary-tecken renderats precis som gjort 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.

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