Aspose.Cells for Python via .NETによる出力PDFのUnicodeサプリメンタリ文字のレンダリング

Aspose.Cells for Python via .NETによる出力PDFのUnicodeサプリメンタリ文字のレンダリング

以下のスクリーンショットは、Aspose.Cells for Python via .NETが元のExcelファイル出力PDFにレンダリングした様子を示しています。すべての3つのUnicodeサプリメンタリ文字がMicrosoft Excelによって行われたのとまったく同じようにレンダリングされていることがわかります。

todo:image_alt_text

サンプルコード

ソースExcelファイル出力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")