.NET REST API to Process Presentation in Cloud
Product Page | Docs | Demos | Swagger UI | Examples | Blog | Search | Free Support | Free Trial
This REST API enables your C#, ASP.NET & other .NET cloud-based apps to process & manipulate PPT, PPTX, ODP, OTP presentations in the cloud.
Presentation Processing Features
- Fetch presentation images in any of the supported file formats.
- Copy the layout side or clone the master slide from the source presentation.
- Process slides shapes, slides notes, placeholders, colors & font theme info.
- Programmatically create a presentation from HTML & export it to various formats.
- Merge multiple presentations or split the single presentation into multiple ones.
- Extract and replace text from a specific slide or an entire presentation.
Microsoft PowerPoint: PPT, POT, PPS, PPTX, POTX, PPSX, PPTM, PPSM, POTM
OpenOffice: ODP, OTP
Save Presentation As
Fixed Layout: PDF, XPS
Images: TIFF, JPEG, PNG, GIF, BMP, SVG
Web: HTML
Other: SWF (export whole presentations)
Get Started
You do not need to install anything to get started with Aspose.Slides Cloud SDK for .NET. Just create an account at Aspose for Cloud and get your application information.
Simply execute Install-Package Aspose.Slides-Cloud
from the Package Manager Console in Visual Studio to fetch & reference Aspose.Slides assembly in your project. If you already have Aspose.Slides Cloud SDK for .NET and want to upgrade it, please execute Update-Package Aspose.Slides-Cloud
to get the latest version.
Please check the GitHub Repository for common usage scenarios.
Convert PPTX
to PDF
via C# Code
// for complete examples, please visit https://github.com/aspose-slides-cloud/aspose-slides-cloud-dotnet
// Get Client Id and Client Secret from https://dashboard.aspose.cloud
string MyClientId = "My-Client-Id";
string MyClientSecret = "My-Client-Secret";
// Create instance of the API
var configuration = new Configuration {
AppSid = MyClientId,
AppKey = MyClientSecret
};
var apiInstance = new SlidesApi(configuration);
// Convert PPTX to PDF
apiInstance.PutSlidesSaveAs(new PutSlidesSaveAsRequest("sample-file.pptx", "Converted/sample-file.pdf", Slides.Cloud.Sdk.Model.ExportFormat.Pdf));
Product Page | Docs | Demos | Swagger UI | Examples | Blog | Search | Free Support | Free Trial