Aspose.Slides.NET 16.6.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-37408 - Problem replacing fonts SLIDESNET-37395 - Support for rendering hidden slides in PDF SLIDESNET-37193 - Support to add Pentagon on a slide SLIDESNET-35693 - Support for adding picture bullet SLIDESNET-33272 - PictureBullet for pptx SLIDESNET-37488 - Hyperlinks are not extracted from presentation SLIDESNET-37477 - PptReadException on accessing the presentation SLIDESNET-37468 - InvalidOperationException: Color is not resolved yet. on creating effective portion format SLIDESNET-37464 - WordArt is missing in the generated thumbnail SLIDESNET-37462 - Text becomes bulleted on ppt load and save SLIDESNET-37459 - System.ArgumentException exception on calling GetPresentationText for ODP presentation SLIDESNET-37458 - Index Out of Range exception on exporting presentation to SWF SLIDESNET-37453 - Exception while getting table properties SLIDESNET-37452 - Exception while getting properties of a table SLIDESNET-37451 - Object reference not set exception on presentation load SLIDESNET-37445 - Incorrect html generated from presentation SLIDESNET-37439 - Text extraction algorithm produces different results for similar PPT and ODP files SLIDESNET-37435 - NullReferenceException on presentation load SLIDESNET-37434 - NullReferenceException on presentation load SLIDESNET-37432 - An entry with the same key already exists exception on saving presentation SLIDESNET-37428 - Font size differs from PowerPoint on text change SLIDESNET-37421 - PptxReadException on presentation load SLIDESNET-37419 - Setting MinimalHeight property of Row object has no effect on Height property SLIDESNET-37418 - An element with the same key already exists in the dictionary SLIDESNET-37417 - PptxReadException on presentation load SLIDESNET-37415 - Incorrect charts rendered in generated PDF SLIDESNET-37414 - NullReference exception on adding Ole frame SLIDESNET-37413 - Incorrect chart values rendered in generated PDF SLIDESNET-37412 - Incorrect position of rendered chart in PDF SLIDESNET-37405 - Color is not resolved yet InvalidOperationException for Portion.CreatePortionFormatEffective SLIDESNET-37403 - Unable to export presentations to PDF using multiple threads SLIDESNET-37399 - Gradient improperly rendered in generated thumbnail SLIDESNET-37398 - Text missing in generated thumbnail SLIDESNET-37396 - Error loading presentation SLIDESNET-37391 - X-axis labels are missing in generated thumbnail of slide with chart SLIDESNET-37390 - Exception on presentation save SLIDESNET-37389 - Latin Font is not read properly from slide shape text SLIDESNET-37387 - Low Quality with PdfNotes better with Pdf SLIDESNET-37384 - Incorrect text on generated thumbnail SLIDESNET-37382 - NullReference exception on Exporting PPTX to PdfNotes SLIDESNET-37381 - NullReference exception on Exporting PPT to ODP SLIDESNET-37379 - Transparent Metafile incorrectly rendered in generated Pdf SLIDESNET-37375 - Unable to render a PPTX file to pdf SLIDESNET-37372 - getReflectionEffect() returns null SLIDESNET-37370 - Incorrect text color SLIDESNET-37366 - Input string is not in a correct format exception for specific files SLIDESNET-37361 - Argument Exception on merging presentation decks SLIDESNET-37350 - GetThumbnail under Mono creates a broken image SLIDESNET-37317 - Bullets and dashes changed to numbering SLIDESNET-37239 - SmartArt shape's height changes incorrectly after changing portion's font height SLIDESNET-37123 - Incorrect text in generated thumbnail SLIDESNET-37115 - Text on slide bottom is lost SLIDESNET-37111 - NullReferenceException on loading ppt SLIDESNET-36691 - Slide titles are removed in saved presentation SLIDESNET-36534 - Incorrect text underlined on exported pdf SLIDESNET-36416 - Text Wrapping issue in exported XPS and PDF SLIDESNET-36252 - Conversion to Svg with results in wrong Bullet SLIDESNET-36182 - Image gets rotated in the generated SVG file SLIDESNET-36001 - Wrong text wrapping in generated Pdf SLIDESNET-35916 - PPTX to PDF: Position of the labels is not correct SLIDESNET-35730 - Gradient effects are inverted in generated thumbnails SLIDESNET-35704 - Text alignment issue after PPT to PNG conversion SLIDESNET-35458 - DateTime field missing in generated PDF SLIDESNET-33695 - SmartArt failed to render in generated thumbnails Public API Changes Property Picture has been added to IBulletFormat interface and BulletFormat class This property represents the picture used as a bullet in the paragraph. Code snippet: using (Presentation pres = new Presentation()) { //Accessing the first slide ISlide slide = pres.Slides[0]; //Instantiate the image for bullets Image img = new Bitmap("bullet.png"); IPPImage imgx = pres.Images.AddImage(img); //Adding and accessing Autoshape IAutoShape aShp = slide.Shapes.AddAutoShape(ShapeType.Rectangle, 200, 200, 400, 200); //Accessing the text frame of created autoshape ITextFrame txtFrm = aShp.TextFrame; //Removing the default exisiting paragraph txtFrm.Paragraphs.RemoveAt(0); //Creating new paragraph Paragraph para = new Paragraph(); para.Text = "Welcome to Aspose.Slides"; //Setting paragraph bullet style and image para.ParagraphFormat.Bullet.Type = BulletType.Picture; para.ParagraphFormat.Bullet.Picture.Image = imgx; //Setting Bullet Height para.ParagraphFormat.Bullet.Height = 100; //Adding Paragraph to text frame txtFrm.Paragraphs.Add(para); //Writing the presentation as a PPTX file pres.Save("Bullet.pptx", SaveFormat.Pptx); //Writing the presentation as a PPT file pres.Save("Bullet.ppt", SaveFormat.Ppt); //Writing the presentation as a ODP file pres.Save("Bullet.odp", SaveFormat.Odp); } Property ShowHiddenSlides has been added to IHtmlOptions, IPdfOption, ISwfOptions, ITiffOptions and IXpsOption interfaces and correspondent classes Property ShowHiddenSlides has been added to IHtmlOptions, IPdfOption, ISwfOptions, ITiffOptions, IXpsOption interfaces and HtmlOptions, PdfOption, SwfOptions, TiffOptions, XpsOption classes. This property specifies whether the exported document should include hidden slides or not. Default value is "false". Code example: using (Presentation pres = new Presentation("Presentation.pptx")) { //Instantiate the PdfOptions class PdfOptions pdfOptions = new PdfOptions(); //Specify that the generated document should include hidden slides pdfOptions.ShowHiddenSlides = true; //Save the presentation to PDF with specified options pres.Save("Presentation.pdf", SaveFormat.Pdf, pdfOptions); }

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