Aspose.Slides.NET
22.9.0
See the version list below for details.
dotnet add package Aspose.Slides.NET --version 22.9.0
NuGet\Install-Package Aspose.Slides.NET -Version 22.9.0
<PackageReference Include="Aspose.Slides.NET" Version="22.9.0" />
paket add Aspose.Slides.NET --version 22.9.0
#r "nuget: Aspose.Slides.NET, 22.9.0"
// Install Aspose.Slides.NET as a Cake Addin #addin nuget:?package=Aspose.Slides.NET&version=22.9.0 // Install Aspose.Slides.NET as a Cake Tool #tool nuget:?package=Aspose.Slides.NET&version=22.9.0
Get Font List of Unknown Fonts PPTX .NET API
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License
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.
What's new in v22.9.0
Get Font List of Unknown Fonts
This PPT API release offers the ability to fetch the list of all unknown fonts. This lets you know the fonts which need to be substituted or replaced for the correct rendering of presentation slides.
using (Presentation pres = new Presentation("pres.pptx"))
{
foreach (var fontSubstitution in pres.FontsManager.GetSubstitutions())
{
Console.WriteLine("{0} -> {1}", fontSubstitution.OriginalFontName, fontSubstitution.SubstitutedFontName);
}
}
Configure Slide Effect Repetition Behavior
Couple of new properties have been added to the Timing
class. These properties let you configure if the slide effect will be repeated till the next click or the effect should be repeated till the end of slide.
The following C# sample code demonstrates:
- How to fetch the effects sequence of the desired slide
- Get the desired effect that you want to repeat
- Set the slide effect repeat timing till the end of slide via API
using (Presentation presentation = new Presentation("demo.pptx"))
{
// Gets the effects sequence for the first slide
ISequence effectsSequence = presentation.Slides[0].Timeline.MainSequence;
// Gets the first effect of the main sequence.
IEffect effect = effectsSequence[0];
// Changes the effect Timing/Repeat to "Until End of Slide"
effect.Timing.RepeatUntilEndSlide = true;
}
For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Slides for .NET 22.9 Release Notes.
Read & Write PowerPoint Files
Microsoft PowerPoint: PPT, POT, PPS, PPTX, POTX, PPSX, PPTM, PPSM, POTM
OpenDocument: ODP, OTP
Metafile: EMF
Image: TIFF, XML
Save Presentation As
Fixed Layout: PDF, XPS
Image: JPEG, PNG, GIF, BMP, SVG
Web: HTML
Platform Independence
Aspose.Slides for .NET can be used to build any type of 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.
Get Started
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 the 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
// 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 | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. 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. |
.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. 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. monoandroid90 is compatible. |
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. |
-
.NETFramework 2.0
- No dependencies.
-
.NETFramework 4.0 Client
- No dependencies.
-
.NETStandard 2.0
- System.Drawing.Common (>= 4.7.0)
- System.Text.Encoding.CodePages (>= 4.4.0)
-
MonoAndroid 9.0
- No dependencies.
-
net5.0
- System.Drawing.Common (>= 5.0.2)
- System.Text.Encoding.CodePages (>= 4.4.0)
NuGet packages (18)
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. |
|
Aspose.Slides.WebExtensions
New Aspose.Slides HTML Export system, which allows exporting PowerPoint presentation as a highly customizable HTML/CSS/JS web document. |
|
AsposeHelpers
Aspose helpers |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
24.11.0 | 487 | 11/7/2024 |
24.10.0 | 11,670 | 10/8/2024 |
24.9.0 | 17,308 | 9/12/2024 |
24.8.0 | 40,209 | 8/2/2024 |
24.7.0 | 16,285 | 7/17/2024 |
24.6.0 | 27,068 | 6/11/2024 |
24.5.0 | 35,190 | 5/8/2024 |
24.4.0 | 31,332 | 4/15/2024 |
24.3.0 | 63,210 | 3/15/2024 |
24.2.0 | 38,555 | 2/16/2024 |
24.1.0 | 52,219 | 1/19/2024 |
23.12.0 | 77,875 | 12/11/2023 |
23.11.0 | 95,205 | 11/16/2023 |
23.10.0 | 111,755 | 10/19/2023 |
23.9.0 | 84,495 | 9/20/2023 |
23.8.0 | 61,674 | 8/21/2023 |
23.7.0 | 48,369 | 7/18/2023 |
23.6.0 | 48,929 | 6/26/2023 |
23.5.0 | 136,447 | 5/19/2023 |
23.4.0 | 121,078 | 4/20/2023 |
23.3.1 | 79,870 | 3/23/2023 |
23.2.0 | 52,831 | 2/27/2023 |
23.1.0 | 183,988 | 1/27/2023 |
22.12.0 | 199,015 | 12/16/2022 |
22.11.0 | 129,684 | 11/23/2022 |
22.10.0 | 246,466 | 10/18/2022 |
22.9.0 | 112,245 | 9/13/2022 |
22.8.0 | 62,645 | 8/17/2022 |
22.7.0 | 81,519 | 7/19/2022 |
22.6.0 | 89,472 | 6/24/2022 |
22.5.0 | 97,998 | 5/17/2022 |
22.4.0 | 91,822 | 4/15/2022 |
22.3.0 | 70,941 | 3/17/2022 |
22.2.0 | 132,336 | 2/16/2022 |
22.1.0 | 117,037 | 1/19/2022 |
21.12.0 | 85,441 | 12/17/2021 |
21.11.0 | 111,653 | 11/16/2021 |
21.10.0 | 100,615 | 10/7/2021 |
21.9.0 | 360,600 | 9/20/2021 |
21.8.0 | 96,437 | 8/16/2021 |
21.7.0 | 86,543 | 7/15/2021 |
21.6.0 | 38,423 | 6/17/2021 |
21.5.0 | 67,653 | 5/18/2021 |
21.4.0 | 91,576 | 4/18/2021 |
21.3.0 | 88,659 | 3/19/2021 |
21.2.0 | 98,715 | 2/16/2021 |
21.1.0 | 94,981 | 1/21/2021 |
20.12.0 | 95,418 | 12/10/2020 |
20.11.1 | 6,536 | 12/10/2020 |
20.11.0 | 129,258 | 12/23/2020 |
20.10.0 | 79,854 | 10/19/2020 |
20.9.0 | 24,256 | 9/25/2020 |
20.8.0 | 63,057 | 8/17/2020 |
20.7.0 | 51,049 | 7/17/2020 |
20.6.0 | 66,462 | 6/12/2020 |
20.5.0 | 61,378 | 5/7/2020 |
20.4.0 | 49,465 | 4/22/2020 |
20.3.0 | 56,255 | 3/23/2020 |
20.2.0 | 85,989 | 2/17/2020 |
20.1.0 | 68,574 | 1/17/2020 |
19.12.0 | 54,538 | 12/31/2019 |
19.11.0 | 47,401 | 11/27/2019 |
19.10.0 | 71,341 | 10/29/2019 |
19.9.0 | 64,470 | 9/12/2019 |
19.8.0 | 12,749 | 8/30/2019 |
19.7.0 | 40,712 | 7/26/2019 |
19.6.0 | 28,692 | 6/25/2019 |
19.5.0 | 20,114 | 5/31/2019 |
19.4.0 | 30,624 | 4/26/2019 |
19.3.0 | 14,126 | 4/3/2019 |
19.2.0 | 37,079 | 2/28/2019 |
19.1.0 | 85,069 | 1/30/2019 |
18.12.0 | 52,576 | 12/27/2018 |
18.11.0 | 27,978 | 11/30/2018 |
18.10.0 | 53,996 | 10/30/2018 |
18.9.0 | 18,128 | 9/30/2018 |
18.8.0 | 17,384 | 8/29/2018 |
18.7.0 | 30,264 | 7/27/2018 |
18.6.0 | 37,425 | 7/1/2018 |
18.5.0 | 17,126 | 5/30/2018 |
18.4.0 | 34,756 | 5/3/2018 |
18.3.0 | 18,878 | 4/1/2018 |
18.2.1 | 54,756 | 3/7/2018 |
18.2.0 | 31,052 | 2/28/2018 |
18.1.0 | 30,064 | 1/30/2018 |
17.12.1 | 15,282 | 12/26/2017 |
17.12.0 | 4,671 | 12/16/2017 |
17.11.0 | 7,686 | 11/30/2017 |
17.10.0 | 26,612 | 10/31/2017 |
17.9.1 | 7,402 | 10/12/2017 |
17.9.0 | 6,951 | 10/2/2017 |
17.8.0 | 55,305 | 8/30/2017 |
17.7.0 | 19,308 | 7/31/2017 |
17.6.0 | 11,350 | 7/1/2017 |
17.5.0 | 8,531 | 5/31/2017 |
17.4.0 | 9,829 | 4/28/2017 |
17.3.0 | 17,008 | 4/2/2017 |
17.2.0 | 37,149 | 3/1/2017 |
17.1.0 | 8,519 | 1/31/2017 |
16.12.1 | 15,224 | 1/16/2017 |
16.12.0 | 5,731 | 12/27/2016 |
16.11.0 | 9,231 | 11/30/2016 |
16.10.0 | 11,765 | 11/4/2016 |
16.9.0 | 8,360 | 10/12/2016 |
16.8.0 | 41,014 | 9/27/2016 |
16.7.0 | 5,274 | 8/22/2016 |
16.6.0 | 54,047 | 7/15/2016 |
16.5.0 | 13,094 | 6/16/2016 |
16.4.0 | 9,329 | 5/16/2016 |
16.3.0 | 18,451 | 4/11/2016 |
16.2.0 | 9,530 | 3/17/2016 |
16.1.0 | 22,310 | 2/4/2016 |
15.11.0 | 30,738 | 1/11/2016 |
15.10.0 | 13,705 | 12/10/2015 |
15.9.0 | 10,527 | 11/6/2015 |
15.8.1 | 4,283 | 10/16/2015 |
15.8.0 | 5,125 | 10/5/2015 |
15.7.0 | 75,244 | 9/3/2015 |
15.6.0 | 35,394 | 7/22/2015 |
15.5.0 | 11,201 | 6/16/2015 |
15.4.0 | 8,383 | 5/14/2015 |
15.3.1 | 6,501 | 4/23/2015 |
15.3.0 | 3,985 | 4/14/2015 |
15.2.0 | 42,400 | 3/6/2015 |
15.1.0 | 12,008 | 2/3/2015 |
14.10.0 | 16,183 | 11/28/2014 |
14.9.0 | 7,405 | 11/11/2014 |
14.8.1 | 4,668 | 10/24/2014 |
14.8.0 | 3,829 | 10/16/2014 |
14.7.0 | 5,052 | 9/7/2014 |
14.6.0 | 4,645 | 8/6/2014 |
14.5.0 | 8,775 | 7/16/2014 |
14.4.0 | 5,941 | 6/2/2014 |
14.3.0 | 8,201 | 5/6/2014 |
14.2.0 | 4,373 | 3/24/2014 |
14.1.2 | 6,489 | 2/17/2014 |
14.1.1 | 3,691 | 2/10/2014 |
14.1.0.2 | 3,569 | 2/6/2014 |
13.12.0 | 4,568 | 12/30/2013 |
8.4.2 | 46,385 | 6/5/2014 |
8.4.1 | 4,210 | 5/6/2014 |
8.4.0 | 6,799 | 3/3/2014 |
8.3.0.1 | 3,997 | 2/3/2014 |
8.2.0 | 3,797 | 12/27/2013 |
8.1.0 | 11,303 | 12/16/2013 |
8.0.0 | 4,978 | 10/25/2013 |
7.9.0 | 4,200 | 10/8/2013 |
7.8.0 | 3,829 | 9/3/2013 |
7.7.0 | 11,858 | 8/4/2013 |
7.6.0 | 7,156 | 7/5/2013 |
7.5.0 | 6,228 | 5/27/2013 |
7.4.0 | 10,244 | 4/24/2013 |
7.3.0 | 3,614 | 4/10/2013 |
7.2.0 | 4,238 | 3/8/2013 |
7.1.0 | 5,981 | 1/28/2013 |
7.0.0 | 6,026 | 12/31/2012 |
6.9.0 | 3,586 | 12/10/2012 |
6.8.0 | 3,966 | 10/30/2012 |
6.7.0 | 4,287 | 10/4/2012 |
6.6.0 | 3,495 | 9/13/2012 |
6.5.0 | 3,839 | 7/27/2012 |
6.4.0 | 3,584 | 6/27/2012 |
6.3.0 | 3,518 | 5/29/2012 |
6.2.0 | 3,710 | 5/7/2012 |
6.1.0 | 3,621 | 3/28/2012 |
6.0.0 | 3,976 | 3/2/2012 |
5.9.0.1 | 7,862 | 2/16/2012 |
5.9.0 | 7,003 | 2/16/2012 |