Aspose.Cells for Node.js via C++によるUnicode補助字符の出力PDFへのレンダリング

Aspose.Cells for Node.js via C++を使用した出力PDFへのUnicode補助字符のレンダリング

以下のスクリーンショットは、Aspose.Cellsがsource excel fileoutput PDFにレンダリングした様子を示しています。すべてのUnicode補助字符がMicrosoft Excelと同じように正確にレンダリングされているのがわかります。

todo:image_alt_text

サンプルコード

ソースExcelファイル出力PDFに変換するためのサンプルコードを使用できます。

const path = require("path");
const AsposeCells = require("aspose.cells.node");

// The path to the documents directory.
const dataDir = path.join(__dirname, "data");

// Load your source excel file containing Unicode Supplementary characters
const workbook = new AsposeCells.Workbook(path.join(dataDir, "unicode-supplementary-characters.xlsx"));

// Save the workbook
workbook.save(path.join(dataDir, "RenderUnicodeInOutput_out.pdf"));