Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Created April 8, 2021 01:50
Convert Excel to PDF in Node.js
// load a workbook
var workbook = aspose.cells.Workbook("workbook.xlsx");
// create and set PDF options
pdfOptions = aspose.cells.PdfSaveOptions();
pdfOptions.setCompliance(aspose.cells.PdfCompliance.PDF_A_1_B);
// convert Excel to PDF
workbook.save("Excel to PDF - Compliance.pdf", pdfOptions);
// load a workbook
var workbook = aspose.cells.Workbook("workbook.xlsx");
// convert Excel to PDF
workbook.save("Excel to PDF.pdf", SaveFormat.PDF);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment