Aspose.Cells による出力PDFでUnicode補助文字をレンダリングする

Aspose.Cellsによる出力PDFでUnicode補助文字をレンダリングする

以下のスクリーンショットは、Aspose.Cells が ソースエクセルファイル出力PDF にレンダリングした方法を示しています。Microsoft Excelと同様に、3つのUnicode補助文字が正確にレンダリングされていることがわかります。

todo:image_alt_text

次のサンプルコードを使用して、ソースエクセルファイル出力PDF に変換できます。

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// The path to the documents directory.
String dataDir = Utils.getDataDir(RenderUnicodeSupplimentaryCharacterToPDF.class);
// Load your source excel file containing Unicode Supplementary
// characters
Workbook wb = new Workbook(dataDir + "unicode-supplementary-characters.xlsx");
// Save the workbook
wb.save(dataDir + "output.pdf");