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

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

次のスクリーンショットは、Aspose.Cells がどのようにレンダリングされたかを示しています。ソースエクセルファイル出力 PDF.ご覧のとおり、3 つの Unicode Supplementary 文字はすべて、Microsoft Excel とまったく同じようにレンダリングされています。

todo:画像_代替_文章

このサンプル コードを使用して、ソースエクセルファイルの中へ出力 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");