Spire.Presentation 10.12 supports compressing images
2025-12-29 07:08:25
We're glad to announce the release of Spire.Presentation 10.12. This version supports compressing images and configuring output image DPI when converting slides to images. Additionally, several issues that arose when converting PPTX to PDF and loading PowerPoint documents have been successfully resolved. Check below for the details. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-2994 Added support for compressing images. Presentation presentation = new Presentation(); presentation.LoadFromFile(inputFile); foreach (ISlide slide in presentation.Slides) { foreach (Spire.Presentation.IShape shape in slide.Shapes) { if (shape is SlidePicture) { SlidePicture ps = shape as SlidePicture; // Compress the…
Spire.Presentation 10.11.4 enhances the conversion from PowerPoint to PDF
2025-11-27 06:41:41
We're pleased to announce the release of Spire.Presentation 10.11.4. This version mainly focuses on improving conversion accuracy when exporting PowerPoint and ODP files to PDF. Several issues—such as incorrect image effects, inconsistent layout, and missing footer content—have been successfully resolved. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPPT-2873, SPIREPPT-2888 Fixes the issue where image effects were displayed incorrectly when converting PowerPoint to PDF. Bug SPIREPPT-2951 Fixes the issue where layout became inconsistent when converting PowerPoint to PDF. Bug SPIREPPT-3012 Fixes the issue where footer content was missing when…
Spire.Presentation 10.10.7 optimizes saving time when creating PowerPoint using templates
2025-10-29 09:15:59
We're pleased to announce the release of Spire.Presentation 10.10.7. This version optimizes saving time when creating PowerPoint presentations using templates. Meanwhile, it adds support for setting table transparency and includes adjustments and several bug fixes that improve the overall performance and stability of the product. More details are listed below. Here is a list of changes made in this release Category ID Description Adjustment — Adjusted the usage of the AddDigitalSignature method. Presentation ppt = new Presentation(); ppt.LoadFromFile("in.pptx"); //Add a digital signature,The parameters: string certificatePath, string certificatePassword, string comments, DateTime signTime ppt.AddDigitalSignature("test.pfx", "e-iceblue", "111", DateTime.Now); ppt.SaveToFile("result.pptx", Spire.Presentation.FileFormat.Pptx2016); ppt.Dispose(); New feature…
Spire.Presentation 10.10.1 supports setting fade-in or fade-out duration of audio
2025-10-21 03:55:59
We’re pleased to announce the release of Spire.Presentation 10.10.1. This update introduces features for setting fade-in and fade-out durations for audio, as well as the ability to crop audio. More details are given below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-2988 Added support for setting the fade-in or fade-out duration of audio. // New Append Audio Presentation pres = new Presentation(); FileStream from_stream = File.OpenRead(inputFile); RectangleF audioRect = new RectangleF(50, 50, 100, 100); IAudio audio = pres.Slides[0].Shapes.AppendAudioMedia(from_stream, audioRect); // Set the duration of the starting fade for 13s audio.FadeInDuration = 13000f;…
Spire.Presentation 10.9.3 fixes an issue where documents failed to open
2025-09-30 03:15:23
We're glad to announce the release of Spire.Presentation 10.9.3. This version fixes an issue where documents failed to open. Check below for the details. Here is a list of changes made in this release Category ID Description Bug SPIREPPT-3008 Fixed an issue where documents failed to open when using netstandard libraries on .NET 9.0. Click the link to download Spire.Presentation 10.9.3: https://www.e-iceblue.com/Download/download-presentation-for-net-now.html More information of Spire.Presentation new release or hotfix: https://www.e-iceblue.com/forum/spire-presentation-new-release-or-hotfix-t4736.html
Spire.Presentation 10.9.1 fixes the issue of creating an extra slide when inserting SVG into Shape
2025-09-23 07:22:13
We’re pleased to announce the release of Spire.Presentation 10.9.1. In this version, an issue has been fixed where a new slide was accidentally created when inserting an SVG into a specified shape in a multi-page PowerPoint presentation. Please see the details below. Here is a list of changes made in this release Category ID Description Bug SPIREPPT-2976 Fixes the issue of accidentally creating a new slide when inserting an SVG into a specified shape in a multi-page PowerPoint presentation. Click the link below to download Spire.Presentation 10.9.1: https://www.e-iceblue.com/Download/download-presentation-for-net-now.html More information of Spire.Presentation new release or hotfix: https://www.e-iceblue.com/forum/spire-presentation-new-release-or-hotfix-t4736.html
Spire.Presentation 10.8.2 enhances the conversion from PPTX to PDF
2025-08-22 07:44:58
We’re pleased to announce the release of Spire.Presentation for .NET 10.8.2. This version updates the dependencies of .NET 6.0 and .NET Core 2.0, and fixes a number of issues that occurred when converting PPTX to PDF. More details are listed below. Here is a list of changes made in this release Category ID Description Update - .NET Core 2.0 Microsoft.Win32.Registry >= 4.5.0 System.Drawing.Common >= 4.7.2 System.Security.Permissions >= 4.7.0 System.Text.Encoding.CodePages >= 4.5.0 System.Security.Cryptography.Pkcs >= 4.7.0 System.Security.Cryptography.Xml >=4.7.1 HarfBuzzSharp >=8.3.0.1 Update - .NET 6.0 Microsoft.Win32.Registry >= 5.0.0 System.Drawing.Common >= 6.0.0 System.Security.Permissions >= 6.0.0 System.Text.Encoding.CodePages >= 6.0.0 System.Security.Cryptography.Pkcs >= 6.0.5 System.Security.Cryptography.Xml >= 6.0.2…
Spire.Presentation 10.7.7 supports loading Markdown files
2025-07-21 08:11:46
We're excited to announce the release of Spire.Presentation 10.7.7. The latest version supports loading Markdown files. Besides, the issue that files were corrupted when opening presentations containing copied slides is fixed. Check below for the details. Here is a list of changes made in this release Category ID Description New feature - Supports loading Markdown files. Presentation pt = new Presentation(); pt.LoadFromFile(inputFilePath, FileFormat.Markdown); pt.SaveToFile("out.pptx", FileFormat.Pptx2013); Bug SPIREPPT-2849 Fixes the issue that files were corrupted when opening presentations containing copied slides. Click the link to download Spire.Presentation 10.7.7: https://www.e-iceblue.com/Download/download-presentation-for-net-now.html More information of Spire.Presentation new release or hotfix: https://www.e-iceblue.com/forum/spire-presentation-new-release-or-hotfix-t4736.html