Unicode Zusatzzeichen im Ausgabepdf durch Aspose.Cells for Node.js via C++ rendern

Unicode-Zusatzzeichen im Ausgabepdf durch Aspose.Cells for Node.js via C++ rendern

Das folgende Bildschirmfoto zeigt, wie Aspose.Cells die Quelldatei Excel in das Ausgabepdf gerendert hat. Wie Sie sehen können, wurden alle drei Unicode-Zusatzzeichen exakt so gerendert, wie es Microsoft Excel tut.

todo:image_alt_text

Beispielcode

Sie können diesen Beispiellcode verwenden, um die Quellexceldatei in die Ausgabepdf zu konvertieren.

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