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.
A new feature has been added to the API to further improve the compression of presentations. This feature has been implemented by introducing the following public methods:
public
RemoveUnusedMasterSlides
RemoveUnusedLayoutSlides
So you can easily compress your presentations via API by removing such master and layout slides which are now been used.
The following C# code sample demonstrates how to remove unused master slides from PPTX to compress a Microsoft PowerPoint® presentation:
PPTX
using (Presentation pres = new Presentation("pres.pptx")) { Aspose.Slides.LowCode.Compress.RemoveUnusedMasterSlides(pres); pres.Save("pres-out.pptx", SaveFormat.Pptx); }
The following C# code sample demonstrates how to remove unused layout slides from PPTX to create a compressed Microsoft PowerPoint® presentation:
using (Presentation pres = new Presentation("pres.pptx")) { Aspose.Slides.LowCode.Compress.RemoveUnusedLayoutSlides(pres); pres.Save("pres-out.pptx", SaveFormat.Pptx); }
PDF
This API release offers numerous improvements while converting PowerPoint® PPTX to Acrobat® PDF. Some of those enhancements are as follows:
Fixed the wrong text wrapping issue in generated thumbnail of images.
For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Slides for .NET 22.4 Release Notes.