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 C++ 24.4 delivers a modernized API that will see a gradual reduction in reliance on System::Drawing dependencies. This will ensure a more efficient development experience for C++ programmers. The following new classes and enums have been introduced in this version:
IImage
ImageFormat
Images
With the latest version of the C++ presentation API, users can easily identify presentations with password-protected macros.
Seamlessly export your presentations to the Zip64 format for larger files and optimize your PowerPoint processing workflows on Windows-based systems. The following C++ code example highlights the usage of the newly added set_Zip64Mode() property that enables Zip64 export.
set_Zip64Mode()
System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>(u"demo.pptx"); System::SharedPtr<PptxOptions> options = System::MakeObject<PptxOptions>(); options->set_Zip64Mode(Aspose::Slides::Export::Zip64Mode::Always); pres->Save(u"demo-zip64.pptx", Aspose::Slides::Export::SaveFormat::Pptx, options);
Source*
Rasterizing presentation text as a bitmap and saving it to PDF documents has never been this easy. Version 24.4 of the PowerPoint API supports this functionality with the set_RasterizeUnsupportedFontStyles property so that you can export optimized PDF files. The following code snippet demonstrates the method usage:
set_RasterizeUnsupportedFontStyles
System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>(); System::SharedPtr<PdfOptions> options = System::MakeObject<PdfOptions>(); options->set_RasterizeUnsupportedFontStyles(true); pres->Save(u"pres.pdf", Aspose::Slides::Export::SaveFormat::Pdf, options);
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Slides for C++ 24.4 Release Notes.