Browse our Products

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.

 

Aspose.Slides for .NET 22.4

Download  Support Forum 

File Details

  • Downloads:
  • 11
  • File Size:
  • 83.7 MB
  • Date Added:
  • 4/15/2022

File Details

Improved Presentation Compression

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:

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:

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

Improved PPTX to PDF Conversion

This API release offers numerous improvements while converting PowerPoint® PPTX to Acrobat® PDF. Some of those enhancements are as follows:

  • Resolved the issue on Alpine Linux.
  • Resolved the table header alignment issue.

Improved Text Wrapping in Thumbnail

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.

 English