We are thrilled to announce the availability of Aspose.Slides for .NET 24.7 (DLLs only). The DLLs package delivers a range of enhancements to enrich your presentation processing capabilities and convenient integration.
PDF Conversion Accuracy
Incorporate accurate PDF conversion functionality into your C# presentation conversion applications and enjoy excellent fidelity while converting presentations to PDFs, including charts, text, and layouts with the latest version of the .NET presentations API. This code example highlights the feature usage.
using (Presentation pres = new Presentation("pres.pptx"))
{
PdfOptions options = new PdfOptions { IncludeOleData = true };
pres.Save("pres.pdf", SaveFormat.Pdf, options);
}
Source*
Beefed Up Security
Eliminate malicious content, such as VBA macros and OLE objects from PowerPoint presentations during the loading process using the new DeleteEmbeddedBinaryObjects
property, as illustrated in this code sample.
LoadOptions loadOptions = new LoadOptions() { DeleteEmbeddedBinaryObjects = true };
using (var pres = new Presentation("malware.ppt", loadOptions))
{
pres.Save("clean.ppt", SaveFormat.Ppt);
}
Source*
Handle Password-protected Presentations
Aspose.Slides for .NET 24.7 enhances the management of password-protected presentations and ascertains effortless loading and processing of your protected presentations.
Bug Fixes
Numerous bug fixes related to slide content, chart rendering, formula display, and thumbnail generation are also incorporated into this release.
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Slides for .NET 24.7 Release Notes.