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 .NET 23.12 is tailored for C# developers seeking to optimize PowerPoint processing. This latest release includes many performance enhancements, boasting a remarkable 3x increase in runtime speed, along with many new features and bug fixes.
Shape.IsDecorative
This C# code example illustrates how to render presentations as handouts:
using (Presentation pres = new Presentation("pres.pptx")) { RenderingOptions options = new RenderingOptions { SlidesLayoutOptions = new HandoutLayoutingOptions { Handout = HandoutType.Handouts4Horizontal, PrintSlideNumbers = false } }; Bitmap[] handoutSlides = pres.GetThumbnails(options); for (var index = 0; index < handoutSlides.Length; index++) { var handoutSllide = handoutSlides[index]; handoutSllide.Save($"handout-{index}.png"); } }
Source*
The following C# code snippet demonstrates how to use the newly added InkOptions class for controlling the look of the Ink objects:
InkOptions
using (Presentation pres = new Presentation("pres.pptx")) { PdfOptions options = new PdfOptions(); options.InkOptions.HideInk = true; pres.Save("pres.pdf", SaveFormat.Pdf, options); }
Please refer to the below-given code example to learn how to use the Shape.IsDecorative to set decorative shapes:
using (Presentation pres = new Presentation("sample.pptx")) { pres.Slides[0].Shapes[0].IsDecorative = true; }
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Slides for .NET 23.12 Release Notes.