Add accurate PDF rendering, strong password-protected presentation handling, and more to your C# PowerPoint manipulation apps with Aspose.Slides for .NET 24.7 (MSI).
Accurate PDF Conversion
Experience exceptional fidelity when converting presentations to PDF, including charts, text, and layouts using 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*
Boosted Security
Remove malicious content like VBA macros and OLE objects from presentations during the loading process with 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*
Enhanced Password-protected Presentation Handling
Aspose.Slides for .NET 24.7 improves the handling of password-protected presentations and ensures seamless loading and processing of your secure 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.