Aspose.Slides.NET
24.10.0
dotnet add package Aspose.Slides.NET --version 24.10.0
NuGet\Install-Package Aspose.Slides.NET -Version 24.10.0
<PackageReference Include="Aspose.Slides.NET" Version="24.10.0" />
paket add Aspose.Slides.NET --version 24.10.0
#r "nuget: Aspose.Slides.NET, 24.10.0"
// Install Aspose.Slides.NET as a Cake Addin #addin nuget:?package=Aspose.Slides.NET&version=24.10.0 // Install Aspose.Slides.NET as a Cake Tool #tool nuget:?package=Aspose.Slides.NET&version=24.10.0
Presentation Manipulation .NET API
Product Page | Docs | Demos | API Reference | Examples | Blog | Releases | 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.
Without having to install a PowerPoint program or any 3rd party component, you can use Aspose.Slides to build different types of .NET applications, e.g., Windows Forms Apps, Windows Web Apps, as well as to deploy Web Services. For example, Aspose, using its own APIs, developed these free web applications for popular conversion processes: PowerPoint to Word, PowerPoint to PDF, and PowerPoint to JPG.
Aspose.Slides for .NET requires you to use .NET programming languages. For C++, Java and Python languages, we recommend you get Aspose.Slides for C++, Aspose.Slides for Java and Aspose.Slides for Python via .NET, respectively.
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.
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, CSS, JS
Video: MP4, WEBM, AVI
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.
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);
}
Convert PowerPoint to Video
Use Aspose.Slides alongside a third-party utility (FFMpegCore) to generate frames from your presentation and convert those frames to a video.
- Use Aspose.Slides to generate a set of frames (from the presentation slides) that correspond to a certain FPS (frames per second)
- Use a third-party utility like FFMpegCore (ffmpeg) to create a video based on the frames.
- Use the dotnet add package command to add Aspose.Slides and the FFMpegCore library to your project:
- run
dotnet add package Aspose.Slides.NET
- run
dotnet add package FFMpegCore --version 4.8.0
- run
- Dowload ffmpeg.
- FFMpegCore requires you to specify the path to the downloaded ffmpeg (e.g. extracted to "C:\tools\ffmpeg"):
GlobalFFOptions.Configure(new FFOptions { BinaryFolder = @"c:\tools\ffmpeg\bin",} );
- Run the PowerPoint to video code.
using System.Collections.Generic;
using Aspose.Slides;
using FFMpegCore; // Will use FFmpeg binaries we extracted to "c:\tools\ffmpeg" before
using Aspose.Slides.Animation;
using (Presentation presentation = new Presentation())
{
// Adds a smile shape and then animates it
IAutoShape smile = presentation.Slides[0].Shapes.AddAutoShape(ShapeType.SmileyFace, 110, 20, 500, 500);
IEffect effectIn = presentation.Slides[0].Timeline.MainSequence.AddEffect(smile, EffectType.Fly, EffectSubtype.TopLeft, EffectTriggerType.AfterPrevious);
IEffect effectOut = presentation.Slides[0].Timeline.MainSequence.AddEffect(smile, EffectType.Fly, EffectSubtype.BottomRight, EffectTriggerType.AfterPrevious);
effectIn.Timing.Duration = 2f;
effectOut.PresetClassType = EffectPresetClassType.Exit;
const int Fps = 33;
List<string> frames = new List<string>();
using (var animationsGenerator = new PresentationAnimationsGenerator(presentation))
using (var player = new PresentationPlayer(animationsGenerator, Fps))
{
player.FrameTick += (sender, args) =>
{
string frame = $"frame_{(sender.FrameIndex):D4}.png";
args.GetFrame().Save(frame);
frames.Add(frame);
};
animationsGenerator.Run(presentation.Slides);
}
// Configure ffmpeg binaries folder.
GlobalFFOptions.Configure(new FFOptions { BinaryFolder = @"c:\tools\ffmpeg\bin", });
// Converts frames to webm video
FFMpeg.JoinImageSequence("smile.webm", Fps, frames.Select(frame => ImageInfo.FromPath(frame)).ToArray());
}
Animations and effects in the presentation are exported to video.
Product Page | Docs | Demos | API Reference | Examples | Blog | Releases | Free Support | Temporary License
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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. |
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)
-
net6.0
- System.Drawing.Common (>= 7.0.0)
- 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.10.0 | 6,908 | 10/8/2024 |
24.9.0 | 15,258 | 9/12/2024 |
24.8.0 | 36,231 | 8/2/2024 |
24.7.0 | 15,565 | 7/17/2024 |
24.6.0 | 25,638 | 6/11/2024 |
24.5.0 | 34,128 | 5/8/2024 |
24.4.0 | 30,306 | 4/15/2024 |
24.3.0 | 60,962 | 3/15/2024 |
24.2.0 | 37,859 | 2/16/2024 |
24.1.0 | 50,377 | 1/19/2024 |
23.12.0 | 75,397 | 12/11/2023 |
23.11.0 | 93,474 | 11/16/2023 |
23.10.0 | 109,703 | 10/19/2023 |
23.9.0 | 82,382 | 9/20/2023 |
23.8.0 | 61,160 | 8/21/2023 |
23.7.0 | 47,839 | 7/18/2023 |
23.6.0 | 48,443 | 6/26/2023 |
23.5.0 | 135,138 | 5/19/2023 |
23.4.0 | 119,039 | 4/20/2023 |
23.3.1 | 79,196 | 3/23/2023 |
23.2.0 | 52,455 | 2/27/2023 |
23.1.0 | 181,813 | 1/27/2023 |
22.12.0 | 195,948 | 12/16/2022 |
22.11.0 | 128,352 | 11/23/2022 |
22.10.0 | 244,455 | 10/18/2022 |
22.9.0 | 111,114 | 9/13/2022 |
22.8.0 | 62,329 | 8/17/2022 |
22.7.0 | 81,039 | 7/19/2022 |
22.6.0 | 88,973 | 6/24/2022 |
22.5.0 | 97,765 | 5/17/2022 |
22.4.0 | 91,467 | 4/15/2022 |
22.3.0 | 70,443 | 3/17/2022 |
22.2.0 | 131,031 | 2/16/2022 |
22.1.0 | 116,666 | 1/19/2022 |
21.12.0 | 85,211 | 12/17/2021 |
21.11.0 | 111,019 | 11/16/2021 |
21.10.0 | 99,861 | 10/7/2021 |
21.9.0 | 357,572 | 9/20/2021 |
21.8.0 | 96,243 | 8/16/2021 |
21.7.0 | 85,894 | 7/15/2021 |
21.6.0 | 38,154 | 6/17/2021 |
21.5.0 | 67,276 | 5/18/2021 |
21.4.0 | 91,527 | 4/18/2021 |
21.3.0 | 88,325 | 3/19/2021 |
21.2.0 | 98,431 | 2/16/2021 |
21.1.0 | 94,814 | 1/21/2021 |
20.12.0 | 94,962 | 12/10/2020 |
20.11.1 | 6,535 | 12/10/2020 |
20.11.0 | 128,869 | 12/23/2020 |
20.10.0 | 79,100 | 10/19/2020 |
20.9.0 | 24,252 | 9/25/2020 |
20.8.0 | 62,759 | 8/17/2020 |
20.7.0 | 50,879 | 7/17/2020 |
20.6.0 | 66,209 | 6/12/2020 |
20.5.0 | 60,874 | 5/7/2020 |
20.4.0 | 49,196 | 4/22/2020 |
20.3.0 | 55,775 | 3/23/2020 |
20.2.0 | 85,445 | 2/17/2020 |
20.1.0 | 68,348 | 1/17/2020 |
19.12.0 | 54,352 | 12/31/2019 |
19.11.0 | 47,363 | 11/27/2019 |
19.10.0 | 71,091 | 10/29/2019 |
19.9.0 | 64,165 | 9/12/2019 |
19.8.0 | 12,743 | 8/30/2019 |
19.7.0 | 40,624 | 7/26/2019 |
19.6.0 | 28,482 | 6/25/2019 |
19.5.0 | 20,076 | 5/31/2019 |
19.4.0 | 30,565 | 4/26/2019 |
19.3.0 | 14,079 | 4/3/2019 |
19.2.0 | 36,878 | 2/28/2019 |
19.1.0 | 84,856 | 1/30/2019 |
18.12.0 | 52,390 | 12/27/2018 |
18.11.0 | 27,782 | 11/30/2018 |
18.10.0 | 53,965 | 10/30/2018 |
18.9.0 | 18,111 | 9/30/2018 |
18.8.0 | 17,318 | 8/29/2018 |
18.7.0 | 29,918 | 7/27/2018 |
18.6.0 | 37,410 | 7/1/2018 |
18.5.0 | 17,097 | 5/30/2018 |
18.4.0 | 34,679 | 5/3/2018 |
18.3.0 | 18,851 | 4/1/2018 |
18.2.1 | 54,588 | 3/7/2018 |
18.2.0 | 30,806 | 2/28/2018 |
18.1.0 | 30,011 | 1/30/2018 |
17.12.1 | 15,265 | 12/26/2017 |
17.12.0 | 4,645 | 12/16/2017 |
17.11.0 | 7,680 | 11/30/2017 |
17.10.0 | 26,499 | 10/31/2017 |
17.9.1 | 7,401 | 10/12/2017 |
17.9.0 | 6,950 | 10/2/2017 |
17.8.0 | 55,135 | 8/30/2017 |
17.7.0 | 19,121 | 7/31/2017 |
17.6.0 | 11,284 | 7/1/2017 |
17.5.0 | 8,512 | 5/31/2017 |
17.4.0 | 9,808 | 4/28/2017 |
17.3.0 | 16,915 | 4/2/2017 |
17.2.0 | 37,018 | 3/1/2017 |
17.1.0 | 8,414 | 1/31/2017 |
16.12.1 | 15,220 | 1/16/2017 |
16.12.0 | 5,730 | 12/27/2016 |
16.11.0 | 9,215 | 11/30/2016 |
16.10.0 | 11,764 | 11/4/2016 |
16.9.0 | 8,330 | 10/12/2016 |
16.8.0 | 40,780 | 9/27/2016 |
16.7.0 | 5,273 | 8/22/2016 |
16.6.0 | 53,807 | 7/15/2016 |
16.5.0 | 13,083 | 6/16/2016 |
16.4.0 | 9,326 | 5/16/2016 |
16.3.0 | 18,450 | 4/11/2016 |
16.2.0 | 9,528 | 3/17/2016 |
16.1.0 | 22,251 | 2/4/2016 |
15.11.0 | 30,628 | 1/11/2016 |
15.10.0 | 13,671 | 12/10/2015 |
15.9.0 | 10,525 | 11/6/2015 |
15.8.1 | 4,282 | 10/16/2015 |
15.8.0 | 5,124 | 10/5/2015 |
15.7.0 | 74,878 | 9/3/2015 |
15.6.0 | 35,205 | 7/22/2015 |
15.5.0 | 11,153 | 6/16/2015 |
15.4.0 | 8,358 | 5/14/2015 |
15.3.1 | 6,488 | 4/23/2015 |
15.3.0 | 3,984 | 4/14/2015 |
15.2.0 | 42,367 | 3/6/2015 |
15.1.0 | 11,930 | 2/3/2015 |
14.10.0 | 15,871 | 11/28/2014 |
14.9.0 | 7,361 | 11/11/2014 |
14.8.1 | 4,663 | 10/24/2014 |
14.8.0 | 3,828 | 10/16/2014 |
14.7.0 | 5,051 | 9/7/2014 |
14.6.0 | 4,644 | 8/6/2014 |
14.5.0 | 8,754 | 7/16/2014 |
14.4.0 | 5,922 | 6/2/2014 |
14.3.0 | 8,164 | 5/6/2014 |
14.2.0 | 4,372 | 3/24/2014 |
14.1.2 | 6,432 | 2/17/2014 |
14.1.1 | 3,690 | 2/10/2014 |
14.1.0.2 | 3,562 | 2/6/2014 |
13.12.0 | 4,567 | 12/30/2013 |
8.4.2 | 45,947 | 6/5/2014 |
8.4.1 | 4,209 | 5/6/2014 |
8.4.0 | 6,680 | 3/3/2014 |
8.3.0.1 | 3,984 | 2/3/2014 |
8.2.0 | 3,796 | 12/27/2013 |
8.1.0 | 11,296 | 12/16/2013 |
8.0.0 | 4,977 | 10/25/2013 |
7.9.0 | 4,199 | 10/8/2013 |
7.8.0 | 3,824 | 9/3/2013 |
7.7.0 | 11,856 | 8/4/2013 |
7.6.0 | 7,140 | 7/5/2013 |
7.5.0 | 6,224 | 5/27/2013 |
7.4.0 | 10,243 | 4/24/2013 |
7.3.0 | 3,610 | 4/10/2013 |
7.2.0 | 4,237 | 3/8/2013 |
7.1.0 | 5,977 | 1/28/2013 |
7.0.0 | 6,017 | 12/31/2012 |
6.9.0 | 3,585 | 12/10/2012 |
6.8.0 | 3,965 | 10/30/2012 |
6.7.0 | 4,286 | 10/4/2012 |
6.6.0 | 3,494 | 9/13/2012 |
6.5.0 | 3,838 | 7/27/2012 |
6.4.0 | 3,583 | 6/27/2012 |
6.3.0 | 3,517 | 5/29/2012 |
6.2.0 | 3,709 | 5/7/2012 |
6.1.0 | 3,617 | 3/28/2012 |
6.0.0 | 3,975 | 3/2/2012 |
5.9.0.1 | 7,827 | 2/16/2012 |
5.9.0 | 6,944 | 2/16/2012 |