Aspose.Slides.NET 20.1.0

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Aspose.Slides.NET --version 20.1.0
                    
NuGet\Install-Package Aspose.Slides.NET -Version 20.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Aspose.Slides.NET" Version="20.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Aspose.Slides.NET" Version="20.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Aspose.Slides.NET" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Aspose.Slides.NET --version 20.1.0
                    
#r "nuget: Aspose.Slides.NET, 20.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Aspose.Slides.NET@20.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Aspose.Slides.NET&version=20.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Aspose.Slides.NET&version=20.1.0
                    
Install as a Cake Tool

Aspose.Slides' object model gives the developers complete control over presentation elements such as slides, shapes, charts, multimedia, embedded objects, tables, text, transitions and formatting. Developers can directly use this object model to create complex PowerPoint File Processing application that can dynamically generate presentation files, manipulate slides, apply transitions or animation effects, convert presentations to other popular formats as well as render slides to images for easy viewing.

Presentation Processing Features

  • Create presentations from scratch via API or templates & data.
  • Load presentation files from various sources for editing or just examining.
  • High-fidelity rendering of presentation or slides to fixed-layout & images formats.
  • Control access to presentations & slides or certain objects via advanced security features.
  • Create shapes such as rectangles, lines, poly-lines & ellipses on-the-fly.
  • Copy or clone slides for the same or different presentation.
  • Availability of 24 pre-defined textures & 48 patterns for quick styling.

Read & Write Presentations

Microsoft PowerPoint: PPT, PPTX, PPS, POT, PPSX, PPTM, PPSM, POTX, POTM OpenOffice: ODP

Save Presentations As

Fixed Layout: PDF, PDF/A, XPS Image: JPEG, PNG, BMP, TIFF, GIF, SVG Web: HTML

Platform Independence

You can use Aspose.Slides for .NET to build any type of a 32-bit or 64-bit .NET application including ASP.NET, WCF & WinForms as well as via COM Interop from ASP, Perl, PHP and Python. Aspose.Slides for .NET works with Mono, on various flavors of Linux and on Mac OS X.

Getting Started with Aspose.Slides for .NET

Let's give Aspose.Slides for .NET a try! Simply execute Install-Package Aspose.Slides.NET from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.Slides for .NET and want to upgrade the version, please execute Update-Package Aspose.Slides.NET to get the latest version.

Create a PPTX Presentation from Scratch with C#

You can execute below code snippet to see how Aspose.Slides API performs in your environment or check the GitHub Repository for other common usage scenarios.

// instantiate a Presentation object that represents a presentation file
using (Presentation presentation = new Presentation())
{
    // get the first slide
    ISlide slide = presentation.Slides[0];
    
    // add an autoshape of type line
    slide.Shapes.AddAutoShape(ShapeType.Line, 50, 150, 300, 0);
    presentation.Save(dir + "output.pptx", SaveFormat.Pptx);
}

Convert Specific Slides to PDF Format using C#

Aspose.Slides for .NET works as an independent rendering engine for presentations and slides with flexibly overriding certain aspects such as converting specific PowerPoint slides to PDF format.

// instantiate a Presentation object that represents a presentation file
using (Presentation presentation = new Presentation(dir + "template.pptx"))
{
    // setting array of slides positions
    int[] slides = { 1, 3 };
    // save the presentation to PDF
    presentation.Save(dir + "output.pdf", slides, SaveFormat.Pdf);
}

Product Page | Documentation | API Reference | Code Examples | Blog | Free Support | Temporary License

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net20 is compatible.  net35 was computed.  net35-client is compatible.  net40 was computed.  net40-client is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (21)

Showing the top 5 NuGet packages that depend on Aspose.Slides.NET:

Package Downloads
Aspose.Total

Aspose.Total for .NET is the most complete package of all .NET file format APIs offered by Aspose. It empowers developers to create, edit, render, print and convert between a wide range of popular document formats within any .NET, C#, ASP.NET and VB.NET applications.

Verify.Aspose

Extends Verify (https://github.com/VerifyTests/Verify) to allow verification via Aspose.

Weavy.Core

A class library containing core business logic, data access and utility methods required by Weavy.

AsposeHelpers

Aspose helpers

Aspose.Slides.WebExtensions

New Aspose.Slides HTML Export system, which allows exporting PowerPoint presentation as a highly customizable HTML/CSS/JS web document.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
25.9.0 2,043 9/3/2025
25.8.0 10,915 8/5/2025
25.7.0 29,826 7/2/2025
25.6.0 11,253 6/7/2025
25.5.0 18,288 5/7/2025
25.4.0 21,624 4/9/2025
25.3.0 30,799 3/6/2025
25.2.0 72,097 2/6/2025
25.1.0 70,553 1/13/2025
24.12.0 68,957 12/2/2024
24.11.0 54,103 11/7/2024
24.10.0 83,703 10/8/2024
24.9.0 45,173 9/12/2024
24.8.0 116,079 8/2/2024
24.7.0 32,756 7/17/2024
24.6.0 51,219 6/11/2024
24.5.0 61,239 5/8/2024
24.4.0 63,493 4/15/2024
24.3.0 140,805 3/15/2024
24.2.0 62,706 2/16/2024
24.1.0 93,041 1/19/2024
23.12.0 122,061 12/11/2023
23.11.0 138,535 11/16/2023
23.10.0 160,379 10/19/2023
23.9.0 98,680 9/20/2023
23.8.0 79,545 8/21/2023
23.7.0 61,173 7/18/2023
23.6.0 59,411 6/26/2023
23.5.0 182,030 5/19/2023
23.4.0 145,849 4/20/2023
23.3.1 101,707 3/23/2023
23.2.0 59,484 2/27/2023
23.1.0 269,416 1/27/2023
22.12.0 266,405 12/16/2022
22.11.0 168,700 11/23/2022
22.10.0 304,122 10/18/2022
22.9.0 131,713 9/13/2022
22.8.0 69,977 8/17/2022
22.7.0 88,257 7/19/2022
22.6.0 97,998 6/24/2022
22.5.0 103,974 5/17/2022
22.4.0 99,728 4/15/2022
22.3.0 89,177 3/17/2022
22.2.0 163,736 2/16/2022
22.1.0 125,591 1/19/2022
21.12.0 94,730 12/17/2021
21.11.0 124,089 11/16/2021
21.10.0 116,087 10/7/2021
21.9.0 458,865 9/20/2021
21.8.0 101,575 8/16/2021
21.7.0 97,299 7/15/2021
21.6.0 42,990 6/17/2021
21.5.0 80,397 5/18/2021
21.4.0 96,777 4/18/2021
21.3.0 95,967 3/19/2021
21.2.0 109,965 2/16/2021
21.1.0 101,950 1/21/2021
20.12.0 108,416 12/10/2020
20.11.1 6,720 12/10/2020
20.11.0 137,537 12/23/2020
20.10.0 89,866 10/19/2020
20.9.0 24,882 9/25/2020
20.8.0 72,075 8/17/2020
20.7.0 54,755 7/17/2020
20.6.0 74,399 6/12/2020
20.5.0 74,352 5/7/2020
20.4.0 61,063 4/22/2020
20.3.0 65,508 3/23/2020
20.2.0 105,522 2/17/2020
20.1.0 76,986 1/17/2020
19.12.0 57,775 12/31/2019
19.11.0 49,082 11/27/2019
19.10.0 77,033 10/29/2019
19.9.0 70,379 9/12/2019
19.8.0 13,115 8/30/2019
19.7.0 42,767 7/26/2019
19.6.0 33,947 6/25/2019
19.5.0 20,674 5/31/2019
19.4.0 32,004 4/26/2019
19.3.0 17,549 4/3/2019
19.2.0 39,119 2/28/2019
19.1.0 89,811 1/30/2019
18.12.0 55,238 12/27/2018
18.11.0 36,878 11/30/2018
18.10.0 55,720 10/30/2018
18.9.0 19,884 9/30/2018
18.8.0 18,618 8/29/2018
18.7.0 35,825 7/27/2018
18.6.0 38,420 7/1/2018
18.5.0 18,584 5/30/2018
18.4.0 38,166 5/3/2018
18.3.0 21,088 4/1/2018
18.2.1 60,212 3/7/2018
18.2.0 37,884 2/28/2018
18.1.0 32,586 1/30/2018
17.12.1 17,221 12/26/2017
17.12.0 7,833 12/16/2017
17.11.0 8,204 11/30/2017
17.10.0 29,270 10/31/2017
17.9.1 7,749 10/12/2017
17.9.0 7,404 10/2/2017
17.8.0 63,076 8/30/2017
17.7.0 23,400 7/31/2017
17.6.0 12,660 7/1/2017
17.5.0 9,063 5/31/2017
17.4.0 10,546 4/28/2017
17.3.0 19,764 4/2/2017
17.2.0 43,754 3/1/2017
17.1.0 9,338 1/31/2017
16.12.1 15,795 1/16/2017
16.12.0 6,322 12/27/2016
16.11.0 9,872 11/30/2016
16.10.0 12,330 11/4/2016
16.9.0 10,376 10/12/2016
16.8.0 52,075 9/27/2016
16.7.0 5,650 8/22/2016
16.6.0 60,456 7/15/2016
16.5.0 14,128 6/16/2016
16.4.0 10,532 5/16/2016
16.3.0 18,790 4/11/2016
16.2.0 10,908 3/17/2016
16.1.0 26,548 2/4/2016
15.11.0 36,147 1/11/2016
15.10.0 14,676 12/10/2015
15.9.0 11,413 11/6/2015
15.8.1 4,738 10/16/2015
15.8.0 5,503 10/5/2015
15.7.0 79,352 9/3/2015
15.6.0 41,566 7/22/2015
15.5.0 12,061 6/16/2015
15.4.0 9,218 5/14/2015
15.3.1 7,098 4/23/2015
15.3.0 4,320 4/14/2015
15.2.0 43,082 3/6/2015
15.1.0 13,503 2/3/2015
14.10.0 20,248 11/28/2014
14.9.0 8,922 11/11/2014
14.8.1 5,052 10/24/2014
14.8.0 4,207 10/16/2014
14.7.0 5,437 9/7/2014
14.6.0 5,019 8/6/2014
14.5.0 9,277 7/16/2014
14.4.0 6,343 6/2/2014
14.3.0 9,531 5/6/2014
14.2.0 4,764 3/24/2014
14.1.2 7,763 2/17/2014
14.1.1 4,053 2/10/2014
14.1.0.2 3,899 2/6/2014
13.12.0 4,935 12/30/2013
8.4.2 52,506 6/5/2014
8.4.1 4,550 5/6/2014
8.4.0 7,276 3/3/2014
8.3.0.1 4,593 2/3/2014
8.2.0 4,161 12/27/2013
8.1.0 12,147 12/16/2013
8.0.0 5,499 10/25/2013
7.9.0 4,689 10/8/2013
7.8.0 4,168 9/3/2013
7.7.0 12,260 8/4/2013
7.6.0 7,739 7/5/2013
7.5.0 6,648 5/27/2013
7.4.0 10,597 4/24/2013
7.3.0 3,948 4/10/2013
7.2.0 4,824 3/8/2013
7.1.0 6,329 1/28/2013
7.0.0 7,051 12/31/2012
6.9.0 3,961 12/10/2012
6.8.0 4,306 10/30/2012
6.7.0 5,402 10/4/2012
6.6.0 3,830 9/13/2012
6.5.0 4,187 7/27/2012
6.4.0 3,914 6/27/2012
6.3.0 3,878 5/29/2012
6.2.0 4,099 5/7/2012
6.1.0 3,971 3/28/2012
6.0.0 4,342 3/2/2012
5.9.0.1 8,623 2/16/2012
5.9.0 8,403 2/16/2012