Rendera Unicode tilläggstecken i utdata PDF av Aspose.Cells for Node.js via C++

Rendera Unicode-tilläggstecken i utdata-PDF av Aspose.Cells for Node.js via C++

Följande skärmbild visar hur Aspose.Cells renderade källfilen excel till utdata-PDF. Som du kan se har alla tre Unicode-tilläggstecken renderats precis som 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.

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"));