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

SLIDESNET-3102 - Support for embedded fonts SLIDESNET-19163 - Add support for PP2010 PPTX presentations with embeded video SLIDESNET-37588 - Support embedding fonts in the PowerPoint documents SLIDESNET-38901 - Support for switching Rows and Columns of chart data SLIDESNET-39063 - Support for getting loaded fonts list from LoadExternalFonts() SLIDESNET-39101 - Support for setting offset values of stretched picture SLIDESNET-39124 - Adding the picture border feature SLIDESNET-39088 - Difference between organization of text extracted from PPT and PPTX SLIDESNET-38910 - When PPT is converted to PDF, the font in output is changed SLIDESNET-36508 - Presentation with Bezier Chart on it throws exception SLIDESNET-39091 - Hyperlink is not replaced in ppt file SLIDESNET-39199 - Notes are truncated when saving as image SLIDESNET-35364 - Presentation repair message appear on converting PPT to PPTX SLIDESNET-39003 - Table rendered as blurred in exported PDF SLIDESNET-39055 - Equations are improperly rendered inside exported PDF SLIDESNET-39085 - Shape connector does not anchor correctly SLIDESNET-33416 - I've got this error calling Presentation.CloneSlide SLIDESNET-36166 - Repair file message appears on opening the generated PPTX file SLIDESNET-36167 - Repair file message appears on opening the generated PPTX file SLIDESNET-36985 - Exception on extracting internal slide hyperlink SLIDESNET-37989 - Animation are changed after saving ppt SLIDESNET-38472 - Ppt changed after saving SLIDESNET-38557 - OleObjectFrame with non-Microsoft office document failed to open in PowerPoint SLIDESNET-38602 - Superscript text is imporoperly displayed for text when viewed in Chrome SLIDESNET-38618 - The line position was changed in a specific PPT file SLIDESNET-38904 - Text in exported SVG is misplaced SLIDESNET-38943 - Gradient and Texture effects are missing in exported HTML SLIDESNET-38956 - Shape outlines on tables/charts are not rendered in PDF/PNG SLIDESNET-38997 - Autofit in Aspose.Slides looks different than in PowerPoint SLIDESNET-39004 - Blank html generated from presentation SLIDESNET-39006 - Compile warning is generated on accessing SlideSize SLIDESNET-39025 - Ppt to swf files not properly converted SLIDESNET-39043 - Information is removed from NotesMaster XML on saving presentation SLIDESNET-39046 - Difference in Language ID for .ppt and .pptx files SLIDESNET-39081 - The lines that content between boxes (in ppt) are changed SLIDESNET-39083 - Action on shape are lost on saving PPT SLIDESNET-39092 - Presentation gets corruput on saving SLIDESNET-39121 - Chart plot area missing in exported PDF SLIDESNET-39126 - Exception on loading presentation SLIDESNET-39140 - Hyperlink of �Run Program� type on text is not recognized in PPT SLIDESNET-39161 - Link with OpenFile ActionType hyperlink is recognized as Hyperlink SLIDESNET-39164 - External font not applied SLIDESNET-39187 - Newline rendering issues in paragraph Public API Changes Method FontsLoader.GetFontFolders has been added Returns folders where font files are searched. Those are folders that have been added with LoadExternalFonts method as well as system font folders. string[] fontFolders = FontsLoader.GetFontFolders(); Method IChartData.SwitchRowColumn() has been added Swap the data over the axis. Data being charted on the X axis will move to the Y axis and vice versa. using (Presentation pres = new Presentation()) { IChart chart = pres.Slides[0].Shapes.AddChart(ChartType.ClusteredColumn, 100, 100, 400, 300); chart.ChartData.SwitchRowColumn(); pres.Save(outputFileName, SaveFormat.PPTX); } New EmbedFontCharacters enum and AddEmbeddedFont methods has been added To allow embedding fonts into Presentation the new EmbedFontCharacters enum and two overloads of AddEmbeddedFont method have been added: EmbedFontCharacters enum has two members: OnlyUsed: Embed only the characters used in the presentation (best for reducing file size). All: Embed all characters (best for editing by other people). New method AddEmbeddedFont with two overloads has been added to IFontsManager interface and FontsManager implementation class: To embed font from existed IFontData: void AddEmbeddedFont(IFontData fontData, EmbedFontCharacters embedFontRule) To embed font from a binary data: void AddEmbeddedFont(byte[] fontData, EmbedFontCharacters embedFontRule) Using these methods and choosing the desired embedding rule (represented by EmbedFontCharacters enum), all fonts used in Presentation can be embedded: IFontData[] allFonts = pres.FontsManager.GetFonts(); IFontData[] embeddedFonts = pres.FontsManager.GetEmbeddedFonts(); foreach (IFontData font in allFonts) { if (!embeddedFonts.Contains(font)) { pres.FontsManager.AddEmbeddedFont(font, EmbedFontCharacters.All); } } Or, using the new features of .NET framework, this snippet can be replaced with the following: IFontData[] allFonts = pres.FontsManager.GetFonts(); IFontData[] embeddedFonts = pres.FontsManager.GetEmbeddedFonts(); foreach (IFontData font in allFonts.Except(embeddedFonts)) { pres.FontsManager.AddEmbeddedFont(font, EmbedFontCharacters.All); } Please note that an ArgumentException will be thrown if embedded font which is already embedded will be added again using AddEmbeddedFont method. NotesStyle property has been added to IMasterNotesSlide interface and MasterNotesSlide class NotesStyle property has been added to IMasterNotesSlide interface and MasterNotesSlide class respectively. This property specifies the style of a notes text. using (Presentation presentation = new Presentation(path + "Presentation.pptx")) { IMasterNotesSlide notesMaster = presentation.MasterNotesSlideManager.MasterNotesSlide; if (notesMaster != null) { // Get MasterNotesSlide text style ITextStyle notesStyle = notesMaster.NotesStyle; //Set symbol bullet for the first level paragraphs IParagraphFormat paragraphFormat = notesStyle.GetLevel(0); paragraphFormat.Bullet.Type = BulletType.Symbol; } presentation.Save(path + "Presentation-out.pptx", SaveFormat.Pptx); } StretchOffsetLeft, StretchOffsetTop, StretchOffsetRight and StretchOffsetBottom properties have been added to IPictureFillFormat interface and PictureFillFormat class Properties StretchOffsetLeft, StretchOffsetTop, StretchOffsetRight and StretchOffsetBottom has been added to IPictureFillFormat interface and PictureFillFormat class respectively. These properties specify a fill rectangle. When stretching of an image is specified, a source rectangle is scaled to fit the specified fill rectangle. Each edge of the fill rectangle is defined by a percentage offset from the corresponding edge of the shape's bounding box. A positive percentage specifies an inset, while a negative percentage specifies an outset. For example, a left offset of 25% specifies that the left edge of the fill rectangle is located to the right of the bounding box's left edge by an amount equal to 25% of the bounding box's width. Code example: using (Presentation presentation = new Presentation()) { // Get the first slide of presentation ISlide slide = presentation.Slides[0]; // Add an AutoShape of Rectangle type IAutoShape aShape = slide.Shapes.AddAutoShape(ShapeType.Rectangle, 100, 100, 300, 300); // Create image Bitmap img = new Bitmap("image.png"); IPPImage imgEx = presentation.Images.AddImage(img); // Set shape's fill type aShape.FillFormat.FillType = FillType.Picture; // Set shape's picture fill mode aShape.FillFormat.PictureFillFormat.PictureFillMode = PictureFillMode.Stretch; // Set image to fill the shape aShape.FillFormat.PictureFillFormat.Picture.Image = imgEx; // Specify image offsets from the corresponding edge of the shape's bounding box aShape.FillFormat.PictureFillFormat.StretchOffsetLeft = 25; aShape.FillFormat.PictureFillFormat.StretchOffsetRight = 25; aShape.FillFormat.PictureFillFormat.StretchOffsetTop = -20; aShape.FillFormat.PictureFillFormat.StretchOffsetBottom = -10; // Save created presentation presentation.Save("StretchOffsetExample.pptx", SaveFormat.Pptx); }

This package has no dependencies.

Version Downloads Last updated
25.9.0 0 09/03/2025
25.8.0 6 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