Aspose.Slides.NET 14.5.0

Aspose.Slides is a PowerPoint management library for working with Microsoft PowerPoint files without using Microsoft PowerPoint. It allows developers to work with PPT, PPS, POT, PPTX, PPSX, POTX and ODP files on ASP.NET web applications, web services and Windows applications.

Showing the top 20 packages that depend on Aspose.Slides.NET.

Packages Downloads
Finsa.CaravanCore
Package Description
25
Finsa.CaravanCore
Package Description
26
Finsa.CaravanCore
Package Description
27
Finsa.CaravanCore
Package Description
30
Finsa.CaravanCore
Package Description
35
Finsa.CaravanCore
Package Description
38
Finsa.CaravanCore
Package Description
57
Finsa.CaravanCore
Package Description
69
Finsa.CaravanCore
Package Description
78
Finsa.CaravanCore
Package Description
91
Finsa.CaravanCore
Package Description
103
Finsa.CaravanCore
Package Description
111
Finsa.CaravanCore
Package Description
158
Finsa.CaravanCore
Package Description
182
Finsa.CaravanCore
Package Description
293
Finsa.CaravanCore
Package Description
388
Finsa.CaravanCore
Package Description
478
Finsa.CaravanCore
Package Description
1,263
Finsa.CaravanCore
Package Description
2,168

Aspose.Slides for .NET 14.5.0 Release Notes We are pleased to announce the release of Aspose.Slides for .NET 14.5.0. This release includes new functionality and bug fixes. Using Aspose.Slides for .NET you can work with PPT, PPTX, OpenDocument, and other formats in your applications. You can also view, generate, modify, convert, render and print presentations all without using Microsoft PowerPoint. Visit the documentation to learn how to get started with Aspose.Slides for .NET. Note this download contains a fully working version of the product, however without a license set it will run in evaluation mode. To test Aspose.Slides without these evaluation limitations you can request a free 30-day temporary license. The following is a list of changes in this version of Aspose.Slides. Major Features (SLIDESNET-19279) - Support for creating group shapes Minor Features (SLIDESNET-35379) - Support to determine if Powerpoint presentations are password protected without loading them (SLIDESNET-35484) - Add license expiry date checking in export operations (SLIDESNET-35247) - Implement slide transitions serialization to PPT (SLIDESNET-35246) - Implement audios serialization to PPT Other Improvements and Changes Bug Fixes (SLIDESNET-35490) - Exception: 'mv' is an undeclared namespace is thrown on opening the presentation file (SLIDESNET-35470) - NullReference exception on clonig slide with video (SLIDESNET-35468) - KeyNotFound exception on cloning slide (SLIDESNET-35447) - Text in the table is distorted after conversion to PDF (SLIDESNET-35441) - The Data Point text in the Chart is distorted and very hard to read (SLIDESNET-35427) - Layout slide applied differently than PowerPoint in destination presentation for source slide using Aspose.Slides (SLIDESNET-35423) - Presentation repair message for Aspose.Slides cloned presentation (SLIDESNET-35420) - The presentation generated using Aspose.Slides for .NET 14.4.0 is twice the size of the same in Aspose.Slides for .NET 8.4.0 (SLIDESNET-35419) - Saving the presentation causes PowerPoint to crash (SLIDESNET-35369) - Chart gets distorted when coping slides from one Presentation to the other (SLIDESNET-35366) - Images rendering issues, shape distortions (SLIDESNET-35330) - TextFrames don't inherit properties of characters from the TextMasterStyleAtoms. (SLIDESNET-35329) - Setting the chart category axis direction hide the category axis data (SLIDESNET-35294) - Slide comments are not read for PPT presentations (SLIDESNET-35283) - Table Layout gets disturbed after saving the PPT file (SLIDESNET-35278) - Table Font Changes on saving the presentation file (SLIDESNET-35269) - Issue with PPTX to PNG conversion: Chart is not showing in the generated file (SLIDESNET-35260) - Setting font related properties for different chart entities does not work (SLIDESNET-35254) - Radar chart broken on changing the value (SLIDESNET-35250) - Formatting Data Labels doesn't work (SLIDESNET-35093) - PPT presentation is corrupted after resaved with Slides (SLIDESNET-34952) - Saving PPT to PDF with SaveMetafilesAsPng = false cause System.Runtime.InteropServices.ExternalException (SLIDESNET-32609) - SmartArt is improperly rendered in thumbnail (SLIDESNET-31989) - Text getting improperly rendered in generated thumbnails (SLIDESNET-31866) - Graph missing in Thumbnails Public API and Backwards Incompatible Changes Aspose.Slides.IPresentationInfo interface and PresentationInfo class have been added Represent info about presentation. Property bool IsEncrypted gets True if a presentation is encrypted, otherwise gets False. Property LoadFormat LoadFormat gets type of a presentation. Aspose.Slides.IShape.IsGrouped property had been added The property Aspose.Slides.IShape.IsGrouped determines whether the shape is grouped. Aspose.Slides.IShape.ParentGroup property had been added he property Aspose.Slides.IShape.ParentGroup returns parent GroupShape object if shape is grouped. Otherwise returns null. Aspose.Slides.IShapeCollection.AddGroupShape() method had been added The method Aspose.Slides.IShapeCollection.AddGroupShape() creates a new GroupShape and adds it to the end of the collection. GroupShape frame size and position will be fitted to content when new shape will be added into the GroupShape. Aspose.Slides.IShapeCollection.Clear() method had been added The method Aspose.Slides.IShapeCollection.Clear() removes all shapes from the collection. Aspose.Slides.IShapeCollection.InsertGroupShape(int) method had been added The method Aspose.Slides.IShapeCollection.InsertGroupShape(int) creates a new GroupShape and inserts it to the collection at the specified index. GroupShape frame size and position will be fitted to content when new shape will be added into the GroupShape. Methods IPresentationFactory.GetPresentationInfo(string file), IPresentatoinFactory.GetPresentationInfo(Stream stream) have been added These methods allow to receive information about a presentaiton file/stream without full presentation loading. Property IPresentationFactory PresentationFactory.Instance has been added Allows using the factory functionality without instantiation. Restrictions had been added for using undefined values for IShape.Frame Code that attempts to assign undefined frame to IShape.Frame doesn't make sence in general case (particulary in case when parent GroupShape is multiple nested into other GroupShape-s). For example: IShape shape = ...; shape.Frame = new ShapeFrame(float.NaN, float.NaN, float.NaN, float.NaN, NullableBool.NotDefined, NullableBool.NotDefined, float.NaN); or slide.Shapes.AddAutoShape(ShapeType.RoundCornerRectangle, float.NaN, float.NaN, float.NaN, float.NaN); Such code can lead to unclear situations. So restrictions had been added for using undefined values for IShape.Frame. Values of x, y, width, height, flipH, flipV and rotationAngle must be defined (not float.NaN or NullableBool.NotDefined). Example code above now throws ArgumentException exception. This applies to these use cases: IShape shape = ...; shape.Frame = ...; // cannot be undefined IShapeCollection shapes = ...; // x, y, width, height parameters cannot be float.NaN: { shapes.AddAudioFrameCD(...); shapes.AddAudioFrameEmbedded(...); shapes.AddAudioFrameLinked(...); shapes.AddAutoShape(...); shapes.AddChart(...); shapes.AddConnector(...); shapes.AddOleObjectFrame(...); shapes.AddPictureFrame(...); shapes.AddSmartArt(...); shapes.AddTable(...); shapes.AddVideoFrame(...); shapes.InsertAudioFrameEmbedded(...); shapes.InsertAudioFrameLinked(...); shapes.InsertAutoShape(...); shapes.InsertChart(...); shapes.InsertConnector(...); shapes.InsertOleObjectFrame(...); shapes.InsertPictureFrame(...); shapes.InsertTable(...); shapes.InsertVideoFrame(...); } But IShape.RawFrame frame properties can be undefined. This make sence when shape is linked to placeholder. Then undefined shape frame values is overridden from the parent placeholder shape. If there is no parent placeholder shape for that shape then that shape uses default values when it evaluates effective frame based on its IShape.RawFrame. Default values are 0 and NullableBool.False for x, y, width, height, flipH, flipV and rotationAngle. For example: IShape shape = ...; // shape is linked to placeholder shape.RawFrame = new ShapeFrame(float.NaN, float.NaN, 100, float.NaN, NullableBool.NotDefined, NullableBool.NotDefined, 0); // now shape inherits x, y, height, flipH, flipV values form placeholder and overrides width=100 and rotationAngle=0. Type and name of the Aspose.Slides.IShapeCollection.Parent property has been changed Type of the Aspose.Slides.IShapeCollection.Parent property has been changed from ISlideComponent to new IGroupShape interface. IGroupShape interface is the descendant of the ISlideComponent so user code needs no adaptations. Name of the Aspose.Slides.IShapeCollection.Parent property has been changed from Parent to ParentGroup. Type of the Aspose.Slides.IShapeFrame.FlipH, .FlipV properties has been changed Type of the Aspose.Slides.IShapeFrame.FlipH property has been changed from bool to NullableBool. IShape.Frame property return effective instace of IShapeFrame (all of which properties have defined effective values). IShape.RawFrame property return IShapeFrame instace of which each property can have undefined value (particularly FlipH or FlipV can have value NullableBool.NotDefined)

This package has no dependencies.

Version Downloads Last updated
25.9.0 0 09/03/2025
25.8.0 5 08/08/2025
25.7.0 4 07/02/2025
25.6.0 7 06/14/2025
25.5.0 16 05/19/2025
25.4.0 11 04/23/2025
25.3.0 16 03/07/2025
25.2.0 12 02/12/2025
25.1.0 14 01/17/2025
24.12.0 15 12/10/2024
24.11.0 16 11/14/2024
24.10.0 13 10/09/2024
24.9.0 13 09/12/2024
24.8.0 16 08/05/2024
24.7.0 14 07/18/2024
24.6.0 16 06/17/2024
24.5.0 20 05/12/2024
24.4.0 18 04/18/2024
24.3.0 20 03/16/2024
24.2.0 23 03/10/2024
24.1.0 24 02/08/2024
23.12.0 22 02/08/2024
23.11.0 21 02/08/2024
23.10.0 20 02/08/2024
23.9.0 19 02/08/2024
23.8.0 20 02/08/2024
23.7.0 19 02/08/2024
23.6.0 21 02/08/2024
23.5.0 18 02/08/2024
23.4.0 22 02/08/2024
23.3.1 18 02/08/2024
23.2.0 23 02/08/2024
23.1.0 20 02/08/2024
22.12.0 21 02/08/2024
22.11.0 22 02/08/2024
22.10.0 24 02/08/2024
22.9.0 20 02/08/2024
22.8.0 20 09/08/2022
22.7.0 39 08/30/2022
22.6.0 25 02/08/2024
22.5.0 22 02/08/2024
22.4.0 19 02/08/2024
22.3.0 19 02/08/2024
22.2.0 424 02/18/2022
22.1.0 19 02/08/2024
21.12.0 19 02/08/2024
21.11.0 135 12/07/2021
21.10.0 29 11/09/2021
21.9.0 312 10/01/2021
21.8.0 816 09/10/2021
21.7.0 321 07/15/2021
21.6.0 22 06/17/2021
21.5.0 523 05/18/2021
21.4.0 242 04/18/2021
21.3.0 1,722 03/30/2021
21.2.0 22 02/08/2024
21.1.0 21 02/08/2024
20.12.0 25 02/08/2024
20.11.1 20 02/08/2024
20.11.0 18 02/08/2024
20.10.0 21 02/08/2024
20.9.0 18 02/08/2024
20.8.0 20 02/08/2024
20.7.0 22 02/08/2024
20.6.0 22 02/08/2024
20.5.0 20 02/08/2024
20.4.0 21 02/08/2024
20.3.0 22 02/08/2024
20.2.0 24 02/08/2024
20.1.0 21 02/08/2024
19.12.0 19 02/08/2024
19.11.0 22 02/08/2024
19.10.0 19 02/08/2024
19.9.0 23 02/08/2024
19.8.0 20 02/08/2024
19.7.0 21 02/08/2024
19.6.0 19 02/08/2024
19.5.0 20 02/08/2024
19.4.0 21 02/08/2024
19.3.0 22 02/08/2024
19.2.0 22 02/08/2024
19.1.0 22 02/08/2024
18.12.0 21 02/08/2024
18.11.0 21 02/08/2024
18.10.0 24 02/08/2024
18.9.0 19 02/08/2024
18.8.0 20 02/08/2024
18.7.0 20 02/08/2024
18.6.0 21 02/08/2024
18.5.0 19 02/08/2024
18.4.0 20 02/08/2024
18.3.0 20 02/08/2024
18.2.1 20 02/08/2024
18.2.0 24 02/08/2024
18.1.0 21 02/08/2024
17.12.1 18 02/08/2024
17.12.0 18 02/08/2024
17.11.0 21 02/08/2024
17.10.0 23 02/08/2024
17.9.1 23 02/08/2024
17.9.0 20 02/08/2024
17.8.0 22 02/08/2024
17.7.0 20 02/08/2024
17.6.0 22 02/08/2024
17.5.0 19 02/08/2024
17.4.0 21 02/08/2024
17.3.0 18 02/08/2024
17.2.0 21 02/08/2024
17.1.0 19 02/08/2024
16.12.1 21 02/08/2024
16.12.0 23 02/08/2024
16.11.0 19 02/08/2024
16.10.0 19 02/08/2024
16.9.0 21 02/08/2024
16.8.0 19 02/08/2024
16.7.0 21 03/10/2024
16.6.0 22 02/08/2024
16.5.0 21 02/08/2024
16.4.0 22 02/08/2024
16.3.0 20 02/08/2024
16.2.0 24 02/08/2024
16.1.0 19 02/08/2024
15.11.0 21 02/08/2024
15.10.0 25 02/08/2024
15.9.0 22 02/08/2024
15.8.1 23 02/08/2024
15.8.0 22 02/08/2024
15.7.0 24 02/08/2024
15.6.0 20 02/08/2024
15.5.0 23 02/08/2024
15.4.0 23 02/08/2024
15.3.1 21 02/08/2024
15.3.0 22 02/08/2024
15.2.0 20 02/08/2024
15.1.0 20 02/08/2024
14.10.0 20 02/08/2024
14.9.0 23 02/08/2024
14.8.1 18 02/08/2024
14.8.0 21 02/08/2024
14.7.0 23 02/08/2024
14.6.0 21 02/08/2024
14.5.0 20 02/08/2024
14.4.0 22 02/08/2024
14.3.0 23 02/08/2024
14.2.0 26 02/08/2024
14.1.2 38 02/08/2024
14.1.1 25 02/08/2024
14.1.0.2 20 02/08/2024
13.12.0 22 02/08/2024
8.4.2 23 02/08/2024
8.4.1 21 02/08/2024
8.4.0 21 02/08/2024
8.3.0.1 19 02/08/2024
8.2.0 35 02/08/2024
8.1.0 22 02/08/2024
8.0.0 19 02/08/2024
7.9.0 19 02/08/2024
7.8.0 19 02/08/2024
7.7.0 38 02/08/2024
7.6.0 22 02/08/2024
7.5.0 21 02/08/2024
7.4.0 21 02/08/2024
7.3.0 20 02/08/2024
7.2.0 20 02/08/2024
7.1.0 23 02/08/2024
7.0.0 22 02/08/2024
6.9.0 23 02/08/2024
6.8.0 25 02/08/2024
6.7.0 21 02/08/2024
6.6.0 20 02/08/2024
6.5.0 20 02/08/2024
6.4.0 18 02/08/2024
6.3.0 20 02/08/2024
6.2.0 19 02/08/2024
6.1.0 23 02/08/2024
6.0.0 19 02/08/2024
5.9.0.1 21 02/08/2024
5.9.0 22 02/08/2024