Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Aspose.Slides for Node.js via Java version 24.4 delivers a fresh approach to image management within your PowerPoint presentations with the addition of new classes like IImage and ImageFormat.
IImage
ImageFormat
Develop Node.js applications to generate high-quality presentation thumbnails and render presentations to various formats with ease.
You can maintain text quality in PDFs with the PdfOptions.RasterizeUnsupportedFontStyles property added to this release of the Node.js presentation processing API. Please check out this sample code to learn how this property works to rasterize bold font style in bitmap and export to PDF.
PdfOptions.RasterizeUnsupportedFontStyles
var pres = new aspose.slides.Presentation(); var pdfOptions = new aspose.slides.PdfOptions(); pdfOptions.setRasterizeUnsupportedFontStyles(true); pres.save("pres.pdf", aspose.slides.SaveFormat.Pdf, pdfOptions); pres.dispose();
Source*
In this release of the PowerPoint API, we have introduced a new property, PptxOptions.Zip64Mode, for presentations exceeding standard ZIP size limitations. This code example demonstrates how you can use the new property, to export presentations with ZIP64 compression.
PptxOptions.Zip64Mode
var pres = new aspose.slides.Presentation("demo.pptx"); var pptxOptions = new aspose.slides.PptxOptions(); pptxOptions.setZip64Mode(aspose.slides.Zip64Mode.Always); pres.save("demo-zip64.pptx", aspose.slides.SaveFormat.Pptx, pptxOptions); pres.dispose();
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Slides for Node.js via Java 24.4 Release Notes.