Aspose.Slides.NET
20.3.0
See the version list below for details.
Install-Package Aspose.Slides.NET -Version 20.3.0
dotnet add package Aspose.Slides.NET --version 20.3.0
<PackageReference Include="Aspose.Slides.NET" Version="20.3.0" />
paket add Aspose.Slides.NET --version 20.3.0
#r "nuget: Aspose.Slides.NET, 20.3.0"
// Install Aspose.Slides.NET as a Cake Addin
#addin nuget:?package=Aspose.Slides.NET&version=20.3.0
// Install Aspose.Slides.NET as a Cake Tool
#tool nuget:?package=Aspose.Slides.NET&version=20.3.0
Presentation Manipulation .NET API
Aspose.Slides for .NET is a cross-platform API that helps in developing applications with the ability to create, manipulate, inspect or convert Microsoft PowerPoint and OpenOffice presentation files without any dependency.
Presentation Processing Features
- Intuitive Document Object Model: Aspose.Slides' object model gives complete control over presentation elements such as slides, shapes, frames, charts, multimedia, embedded objects, controls, tables, text, transitions and formatting. Developers can use this object model to create complex PowerPoint File Processing applications that can dynamically generate presentations, create or manipulate presentation slides, apply transitions or add animation effects.
- File Format Conversion: API allows to load & convert PowerPoint presentation, template & slideshow file formats to other supported formats without needing to understand the underlying structure of source or destination formats. The conversion process is simple yet reliable with results identical to the original file in its native application.
- Rendering & Printing: Developers can render the whole presentation or selective slides to fixed layout formats such as PDF & XPS as well as raster & vector image formats including PNG, JPEG, SVG and so on. It is also possible to print presentations via physical or virtual printers.
- Presentation Security: Load protected presentations or control access to presentations, slides or objects via advanced security features.
- Availability of 24 pre-defined textures & 48 patterns for quick styling.
Enhancements in Version 20.3
- Keep the sequence of numbered list that has NumberedBulletStartWith.
For the detailed notes, please visit Aspose.Slides for .NET 20.3 Release Notes.
Read & Write Presentations
Microsoft PowerPoint: PPT, PPTX, PPS, POT, PPSX, PPTM, PPSM, POTX, POTM OpenOffice: ODP, OTP
Save Presentations As
Fixed Layout: PDF, PDF/A, XPS Image: JPEG, PNG, BMP, TIFF, GIF, SVG Web: HTML
Platform Independence
Aspose.Slides for .NET can be used to build any type of a 32-bit or 64-bit .NET application including ASP.NET, WCF & WinForms as well as via COM Interop while using diverse programming languages including C++, VBScript & classic ASP. The package provides assemblies to be used with Mono on various flavors of Linux, .NET Core, Xamarin.Android & Xamarin.Mac.
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# Code
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# Code
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 | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net20 net35 net35-client net40 net40-client net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETFramework 2.0
- No dependencies.
-
.NETFramework 3.5
- No dependencies.
-
.NETFramework 4.0
- No dependencies.
-
.NETStandard 2.0
- System.Drawing.Common (>= 4.5.0)
- System.Text.Encoding.CodePages (>= 4.4.0)
-
MonoAndroid 9.0
- No dependencies.
NuGet packages (9)
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. |
|
MyComponentLibrary
LLN |
|
Conholdate.Total
Conholdate.Total for .NET is a complete package to work with a large number of file formats from Microsoft Word, Excel, PowerPoint, Outlook, Project, Visio, Adobe Acrobat, Illustrator, Photoshop, AutoCAD, OpenOffice and many more. Conholdate.Total for .NET allows you to use any API released under Aspose and GroupDocs for .NET in order to create, convert, read, edit, update and print popular document formats. Moreover, you may view, annotate, watermark, assemble, classify, search, redact, parse, merge and compare documents without needing to install the native applications. It helps you in file format manipulation and document automation via simple API. Conholdate.Total for .NET also includes specialized APIs to read and create barcodes, extract text from images using OCR as well as extract human marked data from questioners, surveys, quizzes, MCQ papers and feedback forms. |
|
Aspose.ApprovalTests
Extends ApprovalTests to allow approval via Aspose. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
22.6.0 | 656 | 6/24/2022 |
22.5.0 | 13,484 | 5/17/2022 |
22.4.0 | 21,217 | 4/15/2022 |
22.3.0 | 16,728 | 3/17/2022 |
22.2.0 | 23,641 | 2/16/2022 |
22.1.0 | 33,596 | 1/19/2022 |
21.12.0 | 18,316 | 12/17/2021 |
21.11.0 | 32,237 | 11/16/2021 |
21.10.0 | 29,145 | 10/7/2021 |
21.9.0 | 64,550 | 9/20/2021 |
21.8.0 | 57,035 | 8/16/2021 |
21.7.0 | 38,011 | 7/15/2021 |
21.6.0 | 16,230 | 6/17/2021 |
21.5.0 | 18,720 | 5/18/2021 |
21.4.0 | 60,707 | 4/18/2021 |
21.3.0 | 37,387 | 3/19/2021 |
21.2.0 | 39,676 | 2/16/2021 |
21.1.0 | 62,242 | 1/21/2021 |
20.12.0 | 50,729 | 12/10/2020 |
20.11.1 | 2,239 | 12/10/2020 |
20.11.0 | 59,818 | 12/23/2020 |
20.10.0 | 36,014 | 10/19/2020 |
20.9.0 | 13,815 | 9/25/2020 |
20.8.0 | 42,575 | 8/17/2020 |
20.7.0 | 23,861 | 7/17/2020 |
20.6.0 | 38,276 | 6/12/2020 |
20.5.0 | 31,487 | 5/7/2020 |
20.4.0 | 20,995 | 4/22/2020 |
20.3.0 | 22,754 | 3/23/2020 |
20.2.0 | 45,628 | 2/17/2020 |
20.1.0 | 38,511 | 1/17/2020 |
19.12.0 | 37,918 | 12/31/2019 |
19.11.0 | 36,207 | 11/27/2019 |
19.10.0 | 41,138 | 10/29/2019 |
19.9.0 | 38,694 | 9/12/2019 |
19.8.0 | 8,533 | 8/30/2019 |
19.7.0 | 30,219 | 7/26/2019 |
19.6.0 | 14,288 | 6/25/2019 |
19.5.0 | 14,244 | 5/31/2019 |
19.4.0 | 24,707 | 4/26/2019 |
19.3.0 | 8,582 | 4/3/2019 |
19.2.0 | 17,687 | 2/28/2019 |
19.1.0 | 73,556 | 1/30/2019 |
18.12.0 | 24,765 | 12/27/2018 |
18.11.0 | 13,349 | 11/30/2018 |
18.10.0 | 45,198 | 10/30/2018 |
18.9.0 | 8,095 | 9/30/2018 |
18.8.0 | 10,904 | 8/29/2018 |
18.7.0 | 21,078 | 7/27/2018 |
18.6.0 | 29,732 | 7/1/2018 |
18.5.0 | 11,825 | 5/30/2018 |
18.4.0 | 17,450 | 5/3/2018 |
18.3.0 | 11,179 | 4/1/2018 |
18.2.1 | 42,863 | 3/7/2018 |
18.2.0 | 8,225 | 2/28/2018 |
18.1.0 | 18,207 | 1/30/2018 |
17.12.1 | 10,431 | 12/26/2017 |
17.12.0 | 1,466 | 12/16/2017 |
17.11.0 | 4,024 | 11/30/2017 |
17.10.0 | 10,781 | 10/31/2017 |
17.9.1 | 4,496 | 10/12/2017 |
17.9.0 | 3,552 | 10/2/2017 |
17.8.0 | 26,278 | 8/30/2017 |
17.7.0 | 8,173 | 7/31/2017 |
17.6.0 | 6,004 | 7/1/2017 |
17.5.0 | 4,348 | 5/31/2017 |
17.4.0 | 5,130 | 4/28/2017 |
17.3.0 | 7,865 | 4/2/2017 |
17.2.0 | 23,449 | 3/1/2017 |
17.1.0 | 4,345 | 1/31/2017 |
16.12.1 | 10,299 | 1/16/2017 |
16.12.0 | 2,771 | 12/27/2016 |
16.11.0 | 4,476 | 11/30/2016 |
16.10.0 | 8,909 | 11/4/2016 |
16.9.0 | 4,817 | 10/12/2016 |
16.8.0 | 15,155 | 9/27/2016 |
16.7.0 | 2,328 | 8/22/2016 |
16.6.0 | 36,048 | 7/15/2016 |
16.5.0 | 7,272 | 6/16/2016 |
16.4.0 | 4,967 | 5/16/2016 |
16.3.0 | 15,710 | 4/11/2016 |
16.2.0 | 5,869 | 3/17/2016 |
16.1.0 | 13,028 | 2/4/2016 |
15.11.0 | 16,719 | 1/11/2016 |
15.10.0 | 10,333 | 12/10/2015 |
15.9.0 | 6,688 | 11/6/2015 |
15.8.1 | 1,541 | 10/16/2015 |
15.8.0 | 2,234 | 10/5/2015 |
15.7.0 | 13,945 | 9/3/2015 |
15.6.0 | 20,336 | 7/22/2015 |
15.5.0 | 4,367 | 6/16/2015 |
15.4.0 | 4,032 | 5/14/2015 |
15.3.1 | 2,089 | 4/23/2015 |
15.3.0 | 1,384 | 4/14/2015 |
15.2.0 | 28,527 | 3/6/2015 |
15.1.0 | 5,646 | 2/3/2015 |
14.10.0 | 7,322 | 11/28/2014 |
14.9.0 | 2,440 | 11/11/2014 |
14.8.1 | 2,094 | 10/24/2014 |
14.8.0 | 1,303 | 10/16/2014 |
14.7.0 | 2,563 | 9/7/2014 |
14.6.0 | 2,184 | 8/6/2014 |
14.5.0 | 4,384 | 7/16/2014 |
14.4.0 | 2,447 | 6/2/2014 |
14.3.0 | 3,449 | 5/6/2014 |
14.2.0 | 1,908 | 3/24/2014 |
14.1.2 | 2,683 | 2/17/2014 |
14.1.1 | 1,457 | 2/10/2014 |
14.1.0.2 | 1,372 | 2/6/2014 |
13.12.0 | 2,324 | 12/30/2013 |
8.4.2 | 23,999 | 6/5/2014 |
8.4.1 | 1,876 | 5/6/2014 |
8.4.0 | 1,660 | 3/3/2014 |
8.3.0.1 | 1,364 | 2/3/2014 |
8.2.0 | 1,332 | 12/27/2013 |
8.1.0 | 8,025 | 12/16/2013 |
8.0.0 | 2,409 | 10/25/2013 |
7.9.0 | 1,744 | 10/8/2013 |
7.8.0 | 1,363 | 9/3/2013 |
7.7.0 | 9,011 | 8/4/2013 |
7.6.0 | 3,062 | 7/5/2013 |
7.5.0 | 4,029 | 5/27/2013 |
7.4.0 | 8,183 | 4/24/2013 |
7.3.0 | 1,447 | 4/10/2013 |
7.2.0 | 1,965 | 3/8/2013 |
7.1.0 | 3,772 | 1/28/2013 |
7.0.0 | 2,390 | 12/31/2012 |
6.9.0 | 1,426 | 12/10/2012 |
6.8.0 | 1,670 | 10/30/2012 |
6.7.0 | 2,013 | 10/4/2012 |
6.6.0 | 1,400 | 9/13/2012 |
6.5.0 | 1,569 | 7/27/2012 |
6.4.0 | 1,397 | 6/27/2012 |
6.3.0 | 1,344 | 5/29/2012 |
6.2.0 | 1,451 | 5/7/2012 |
6.1.0 | 1,401 | 3/28/2012 |
6.0.0 | 1,410 | 3/2/2012 |
5.9.0.1 | 3,606 | 2/16/2012 |
5.9.0 | 2,647 | 2/16/2012 |