Aspose.Slides.NET 15.4.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 15.4.0 Release Notes Major Changes SLIDESNET-31745 - Connectors layouting Minor Changes SLIDESNET-36224 - Unique IDs for symbol id for pictures is needed when exporting slides with images to HTML SLIDESNET-35359 - Presentation.GetSlideByID() missing in Aspose.Slides SLIDESNET-33702 - Saving presentation in different slide view types SLIDESNET-17922 - Splitting table cells SLIDESNET-36285 - Implement serialization and deserialization of embedded fonts for PPT SLIDESNET-35273 - Implement SmartArt customization SLIDESNET-13794 - Consistency in DocumentProperties Other Improvements and Changes Bug Fixes SLIDESNET-36419 - Template Name property missing in Document Properties SLIDESNET-36392 - SlideCollection.ResetEffectiveFormat throws NullReferenceException SLIDESNET-36390 - PowerPoint craches on playing presentation with embedded video, 15.5.0 SLIDESNET-36363 - DateTimeInvalid Local format exception is thrown on saving presentation SLIDESNET-36359 - Slide notes failed to get added in presentation SLIDESNET-36358 - Strikethrough is appearing thick in generated thumbnail and pdf SLIDESNET-36357 - Inverse mapping of RotationX and RotationY in Rotation3D Members. SLIDESNET-36355 - FontHeight changing does not work SLIDESNET-36350 - PowerPoint shows a repair request when a presentation generated with Aspose.Slides is opened SLIDESNET-36336 - Issue with Bullets in pptx and ppt SLIDESNET-36332 - Error Bars are missing in generated thumbnail SLIDESNET-36322 - Presentation repair message pops on saving the presentation. SLIDESNET-36316 - Portion format returns wrong font names SLIDESNET-36311 - Chart labels and legends gets disturbed in generated PDF SLIDESNET-36310 - Chart labels and legends gets disturbed in saved presentation SLIDESNET-36309 - Slide background image gets jagged pdf. SLIDESNET-36308 - Text size is not reduced when TextAutoFitType.Normal is used for slide textframe SLIDESNET-36307 - Absurd memory usage in GetThumbnail() for simple slide with log scale SLIDESNET-36306 - Custom document properties are not accessible using Aspose.Slides SLIDESNET-36299 - Input string was not in the correct format exception on adding HTML to text frame SLIDESNET-36298 - Missed shapes in generated Html SLIDESNET-36296 - Null Reference exception on cloning row in side the table SLIDESNET-36295 - Presentation repair message on saving presentation with video SLIDESNET-36294 - Wrong logo image rendering in generated thumbnail SLIDESNET-36284 - Font size for text changed in Aspose.Slides saved presentation SLIDESNET-36277 - Chart Series Markers and lines are improperly rendered in generated thumbnail SLIDESNET-36276 - Charts axis labels are improperly rendered in thumbnails SLIDESNET-36267 - Error on opening PPT file SLIDESNET-36254 - Pptx exception thrown on accessing presentation SLIDESNET-36223 - Presentation with WordArt generate corrupt PDF SLIDESNET-36212 - WordArt effect are lost on text when saving the presentation SLIDESNET-36106 - Presentation gets corrupt when opened in PowerPoint 2007 SLIDESNET-35602 - Save method required to dynamically pass Save Format SLIDESNET-35474 - Chart category axis is improperly rendered in generated thumbnail SLIDESNET-33772 - The presentation size grows after slide cloning SLIDESNET-33655 - ArgumentException thrown on generating the slide thumbnail in Mono MAC environment SLIDESNET-32649 - Text converted to image while converting PPT to PPTX SLIDESNET-12585 - Unsupported Brush Type Exception on PPTX to PDF SLIDESNET-3681 - Accessing objects on the notes page view Public API Changes Enum OrganizationChartLayoutType has been added The Aspose.Slides.SmartArt.OrganizationChartLayoutType enum represents formatting type the child nodes in an organization chart. Method IBulletFormat.ApplyDefaultParagraphIndentsShifts has been added Method Aspose.Slides.IBulletFormat.ApplyDefaultParagraphIndentsShifts sets default non-zero shifts for effective paragraph Indent and MarginLeft when bullets is enabled (like PowerPoint do if enable paragraph bullets/numbering in it). If bullets is disabled then just reset paragraph Indent and MarginLeft (like PowerPoint do if disable paragraph bullets/numbering in it). See examples http://www.aspose.com/docs/display/slidesnet/Managing+Paragraph+Bullets+in+PPTX Method IConnector.Reroute has been added Method Aspose.Slides.IConnector.Reroute reroutes connector so that it take the shortest possible path between the shapes it connect. To do this, the Reroute() method may change the StartShapeConnectionSiteIndex and EndShapeConnectionSiteIndex. using(Presentation input = new Presentation()) { IShapeCollection shapes = input.Slides[0].Shapes; IConnector connector = shapes.AddConnector(ShapeType.BentConnector2, 0, 0, 10, 10); IAutoShape ellipse = shapes.AddAutoShape(ShapeType.Ellipse, 0, 100, 100, 100); IAutoShape rectangle = shapes.AddAutoShape(ShapeType.Rectangle, 100, 300, 100, 100); connector.StartShapeConnectedTo = ellipse; connector.EndShapeConnectedTo = rectangle; connector.Reroute(); input.Save("output.pptx", SaveFormat.Pptx); } Method IPresentation.GetSlideById has been added Method Aspose.Slides.IPresentation.GetSlideById(System.UInt32) returns a Slide, MasterSlide or LayoutSlide by slide Id. using (Presentation presentation = new Presentation()) { uint id = presentation.Slides[0].SlideId; IBaseSlide slide = presentation.GetSlideById(id); Debug.Assert(presentation.Slides[0] == slide); } Property IShape.ConnectionSiteCount has been added Property Aspose.Slides.IShape.ConnectionSiteCount returns the number of connection sites on the shape. using(Presentation input = new Presentation()) { IShapeCollection shapes = input.Slides[0].Shapes; IConnector connector = shapes.AddConnector(ShapeType.BentConnector2, 0, 0, 10, 10); IAutoShape ellipse = shapes.AddAutoShape(ShapeType.Ellipse, 0, 100, 100, 100); IAutoShape rectangle = shapes.AddAutoShape(ShapeType.Rectangle, 100, 200, 100, 100); connector.StartShapeConnectedTo = ellipse; connector.EndShapeConnectedTo = rectangle; uint wantedIndex = 6; if (ellipse.ConnectionSiteCount > wantedIndex) { connector.StartShapeConnectionSiteIndex = wantedIndex; } input.Save("output.pptx", SaveFormat.Pptx); } Property ISmartArt.IsReversed has been added Property Aspose.Slides.SmartArt.ISmartArt.IsReversed allows get or sets the state of the SmartArt diagram with regard to (left-to-right) LTR or (right-to-left) RTL, if the diagram supports reversal. using (Presentation pres = new Presentation()) { ISmartArt smart = pres.Slides[0].Shapes.AddSmartArt(10, 10, 400, 300, SmartArtLayoutType.BasicProcess); smart.IsReversed = true; pres.Save("out.pptx", Export.SaveFormat.Pptx); } Property ISmartArt.Nodes has been added Property Aspose.Slides.SmartArt.ISmartArt.Nodes returns collection of root nodes in SmartArt object. using (Presentation pres = new Presentation()) { ISmartArt smart = pres.Slides[0].Shapes.AddSmartArt(10, 10, 400, 300, SmartArtLayoutType.VerticalBulletList); ISmartArtNode node = smart.Nodes[1]; // select second root node node.TextFrame.Text = "Second root node"; pres.Save("out.pptx", Export.SaveFormat.Pptx); } Property ISmartArtNode.IsHidden has been added Property Aspose.Slides.SmartArt.ISmartArtNode.IsHidden returns true if this node is a hidden node in the data model. using (Presentation pres = new Presentation()) { ISmartArt smart = pres.Slides[0].Shapes.AddSmartArt(10, 10, 400, 300, SmartArtLayoutType.RadialCycle); ISmartArtNode node = smart.AllNodes.AddNode(); bool hidden = node.IsHidden; //returns true if(hidden) { //do some actions or notifications } pres.Save("out.pptx", Export.SaveFormat.Pptx); } Property ISmartArtNode.OrganizationChartLayout has been added Property Aspose.Slides.SmartArt.ISmartArtNode.OrganizationChartLayout allows get or sets organization chart type assosiated with current node. using (Presentation pres = new Presentation()) { ISmartArt smart = pres.Slides[0].Shapes.AddSmartArt(10, 10, 400, 300, SmartArtLayoutType.OrganizationChart); smart.Nodes[0].OrganizationChartLayout = OrganizationChartLayoutType.LeftHanging; pres.Save("out.pptx", Export.SaveFormat.Pptx); } Set method for property ISmartArt.Layout has been added The set method for property Aspose.Slides.SmartArt.ISmartArt.Layout has been added.It allows change layout type of an existing diagram. using (Presentation pres = new Presentation()) { ISmartArt smart = pres.Slides[0].Shapes.AddSmartArt(10, 10, 400, 300, SmartArtLayoutType.BasicBlockList); smart.Layout = SmartArtLayoutType.BasicProcess; pres.Save("out.pptx", Export.SaveFormat.Pptx); } Minor API changes This is the list of minor API changes: Enum Aspose.Slides.BevelColorMode - deleted, unused enum Property ThreeDFormatEffectiveData.BevelColorMode - deleted, unused property Property Aspose.Slides.Charts.ChartSeriesGroup.Chart, Property Aspose.Slides.Charts.IChartSeriesGroup.AsIChartComponent - added Property Aspose.Slides.IParagraphFormatEffectiveData.AsISlideComponent, Inheritance of IParagraphFormatEffectiveData from ISlideComponent, Property Aspose.Slides.IThreeDFormat.AsISlideComponent, Inheritance of IThreeDFormat from ISlideComponent - deleted Property Aspose.Slides.ParagraphFormatEffectiveData.BulletChar, Property Aspose.Slides.ParagraphFormatEffectiveData.BulletFont, Property Aspose.Slides.ParagraphFormatEffectiveData.BulletHeight, Property Aspose.Slides.ParagraphFormatEffectiveData.BulletType, Property Aspose.Slides.ParagraphFormatEffectiveData.NumberedBulletStartWith, Property Aspose.Slides.ParagraphFormatEffectiveData.NumberedBulletStyle - deleted as obsolete

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