Aspose.Slides.NET 15.10.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.

No packages depend on Aspose.Slides.NET.

Minor Changes SLIDESNET-36651 - Animating chart series API Other improments and changes Bug Fixes SLIDESNET-37012 - Empty column is missing in generated PDF SLIDESNET-37006 - Incorrect text on ppt to html in Chrome SLIDESNET-36987 - Chart label font color changed on saving pptx SLIDESNET-36956 - Presentation gets corrupt on adding slide notes SLIDESNET-36950 - Aspose.Slides corrupts PPTX file if it contains a trash folder SLIDESNET-36948 - Implement ODP rotate and translate frame's transformations SLIDESNET-36935 - Saving POT to POTX results in corrupted presenatation SLIDESNET-36920 - Artifacts from chart on generated thumbnail SLIDESNET-36911 - Background missing in generated thumbnail SLIDESNET-36906 - Problem with number format of list in generated PDF SLIDESNET-36902 - Saved pptx presentation requires recovery in PowerPoint SLIDESNET-36879 - Bullets are lost in generated html file SLIDESNET-36862 - Cell's border is not completely drawn in case of adjacent merged cells SLIDESNET-36848 - Layouts are distorted SLIDESNET-36607 - Text on pdf is lost when opened in mac SLIDESNET-36052 - Series Fill Color not getting applied on secondary Y axis SLIDESNET-35988 - Exception on exporting PPT to PDF SLIDESNET-35768 - Fonts are not rendered from HTML to presentation SLIDESNET-35590 - ArgumentException is thrown while Odp loading SLIDESNET-35579 - Wrong Display of Chart data when converting PPTX to JPG SLIDESNET-35541 - The bullet is improperly rendered in generated slide thumbnail SLIDESNET-35539 - Table cell border is rendered wrong SLIDESNET-35482 - Improper charts rendering SLIDESNET-35422 - Object Reference Exception is thrown on opening the PPTX file SLIDESNET-35404 - Aspose.Slides failed to load chart series fill if it is Automatic fill color SLIDESNET-34585 - Border for merged table cells is improperly applied Public API Changes A new VideoPlayerHtmlController added to support export od media files to HTML The new public class VideoPlayerHtmlController has been added to Aspose.Slides.Export namespace. Using the instance of this class user can export video and audio files into HTML. VideoPlayerHtmlController contructors accepts the following parameters: path: The path where video and audio files will be generated fileName: The name of the HTML file baseUri: The base URI which will be used to generate links Usage example: using (Presentation pres = new Presentation("example.pptx")) { const string path = "path"; const string fileName = "video.html"; const string baseUri = "http://www.example.com/"; VideoPlayerHtmlController controller = new VideoPlayerHtmlController(path: path, fileName: fileName, baseUri: baseUri); HtmlOptions htmlOptions = new HtmlOptions(controller); SVGOptions svgOptions = new SVGOptions(controller); htmlOptions.HtmlFormatter = HtmlFormatter.CreateCustomFormatter(controller); htmlOptions.SlideImageFormat = SlideImageFormat.Svg(svgOptions); pres.Save(Path.Combine(path, fileName), SaveFormat.Html, htmlOptions); } Chart series animation API has been added The new 2 methods have been added to Aspose.Slides.Animation.ISequence interface. IEffect AddEffect(IChart chart, EffectChartMajorGroupingType type, int index, EffectType effectType, EffectSubtype subtype, EffectTriggerType triggerType); IEffect AddEffect(IChart chart, EffectChartMinorGroupingType type, int seriesIndex, int categoriesIndex, EffectType effectType, EffectSubtype subtype, EffectTriggerType triggerType); These methods are intended to support the chart's elements animations: by series by categories by series elements by categories elements The two new enums EffectChartMajorGroupingType and EffectChartMinorGroupingType related to the chart's elements animation were introduced. To add a series animation to the chart the following code may be used: using (Presentation pres = new Presentation(inFileName)) { var slide = pres.Slides[0] as Slide; var shapes = slide.Shapes as ShapeCollection; var chart = shapes[0] as IChart; slide.Timeline.MainSequence.AddEffect(chart, EffectType.Fade, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMajorGroupingType.BySeries, 0, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMajorGroupingType.BySeries, 1, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMajorGroupingType.BySeries, 2, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMajorGroupingType.BySeries, 3, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); pres.Save(outFileName, SaveFormat.Pptx); } Categories animation: using (Presentation pres = new Presentation(inFileName)) { var slide = pres.Slides[0] as Slide; var shapes = slide.Shapes as ShapeCollection; var chart = shapes[0] as IChart; slide.Timeline.MainSequence.AddEffect(chart, EffectType.Fade, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMajorGroupingType.ByCategory, 0, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMajorGroupingType.ByCategory, 1, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMajorGroupingType.ByCategory, 2, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMajorGroupingType.ByCategory, 3, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); pres.Save(outFileName, SaveFormat.Pptx); } Series elements animation: using (Presentation pres = new Presentation(inFileName)) { var slide = pres.Slides[0] as Slide; var shapes = slide.Shapes as ShapeCollection; var chart = shapes[0] as IChart; slide.Timeline.MainSequence.AddEffect(chart, EffectType.Fade, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInSeries, 0, 0, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInSeries, 0, 1, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInSeries, 0, 2, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInSeries, 0, 3, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInSeries, 1, 0, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInSeries, 1, 1, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInSeries, 1, 2, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInSeries, 1, 3, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInSeries, 2, 0, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInSeries, 2, 1, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInSeries, 2, 2, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInSeries, 2, 3, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); pres.Save(outFileName, SaveFormat.Pptx); } Categories elements animation: using (Presentation pres = new Presentation(inFileName)) { var slide = pres.Slides[0] as Slide; var shapes = slide.Shapes as ShapeCollection; var chart = shapes[0] as IChart; slide.Timeline.MainSequence.AddEffect(chart, EffectType.Fade, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInCategory, 0, 0, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInCategory, 0, 1, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInCategory, 0, 2, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInCategory, 0, 3, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInCategory, 1, 0, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInCategory, 1, 1, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInCategory, 1, 2, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInCategory, 1, 3, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInCategory, 2, 0, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInCategory, 2, 1, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInCategory, 2, 2, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); ((Sequence)slide.Timeline.MainSequence).AddEffect(chart, EffectChartMinorGroupingType.ByElementInCategory, 2, 3, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious); pres.Save(outFileName, SaveFormat.Pptx); }

This package has no dependencies.

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