Aspose.Slides-Cloud 22.4.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Aspose.Slides-Cloud --version 22.4.0
NuGet\Install-Package Aspose.Slides-Cloud -Version 22.4.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-Cloud" Version="22.4.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspose.Slides-Cloud --version 22.4.0
#r "nuget: Aspose.Slides-Cloud, 22.4.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.
// Install Aspose.Slides-Cloud as a Cake Addin
#addin nuget:?package=Aspose.Slides-Cloud&version=22.4.0

// Install Aspose.Slides-Cloud as a Cake Tool
#tool nuget:?package=Aspose.Slides-Cloud&version=22.4.0

.NET REST API to Process Presentation in Cloud

Version 22.4 Nuget GitHub

banner

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.

You may want to check out Aspose free PPT to PDF, PPT to Word, and PPT to JPG converters because they are live implementations of popular conversion processes.

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.

Read & Write Presentation Formats

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

Save Presentation As

Fixed Layout: PDF, XPS
Images: TIFF, JPEG, PNG, GIF, BMP, SVG
Video: MPEG4, SWF (export whole presentations)
Web: HTML\

Enhancements in Version 22.4

  • Added TransitionType and SlidesTransitionDuration properties to VideoExportOptions class to enable creation videos with transitions.
  • Added DefaultPortionFormat property to Paragraph class. Added new PortionFormat class.
  • Added EmbeddedFileBase64Data and a number of other properties to OleObjectFrame class to enable creation of OLE Object frames.
  • Added AccessPermissions class to support access permissions for PDF export.
  • Added PictureFillformat property to AudioFrame class.
  • Added RowIndex and ColumnIndex properties to TableCell class.
  • Moved Width and Height properties from ExportOptions base class to the new ImageExportOptionsBase class. This is a superclass for ImageExportOptions, GifExportOptions and TiffExportOptions classes.
  • Removed redundant Shapes property from ShapeBase class. It is only left for GroupShape class.

Enhancements in Version 22.3

  • Added ModernSlideComment class to support modern comments. Also added SlideCommentBase as base class for comments.
  • Added optional shapeIndex parameter to CreateComment and CreateCommentOnline methods.
  • Added GetParagraphRectangle, GetPortionRectangle method and new TextBounds class to get paragraph or portion bounds.
  • Added optional shapeType parameter for GetShapes method. You can now get list of shapes of a particular type (e.g. charts or tables).
  • Added FontFallbackRules class and FontFallbackRules property to ExportOptions class.
  • Added LatinFont, EastAsianFont and ComplexScriptFont properties to Portion class to enable getting and seting portion font name.
  • Added ChartLinesFormat class; added MajorGridLinesFormat and MinorGridLinesFormat properties to Axis class.
  • Added HideLegend boolean property to Legend class.

Enhancements in Version 22.2

  • Added Mpeg4 to the list of allowed values for ExportFormat type. You can now convert presentations to video.
  • New HighlightShapeText and HighlightShapeRegex methods.
  • New DeleteUnusedLayoutSlides and DeleteUnusedLayoutSlides methods.
  • New ZoomFrame and ZoomObject classes with a number of subclasses.
  • Added TextFrameFormat property to Shape class to support WordArt.
  • Added XYSeries class as a supercalss for ScatterSeries and BubbleSeries methods.
  • Added None to the list of allowed values for TimeUnitType enum type.
  • Level property of Category class is deprecated and will be removed after v22.4.

Enhancements in Version 22.1

  • New MathParagraph property of Portion class allows to get and set math formulas. A set of MathElement subclasses allows to specify complex mathematical expressions.
  • New DownloadPortionAsMathMl and SavePortionAsMathMl methods allow to export math formulas to MathML format.
  • New HyperlinkClick and HyperlinkMouseOver methods of ShapeBase and Portion classes enable creation and manipulating hyperlinks for shapes and portions.
  • New methods GetShapeGeometryPath and SetShapeGeometryPath can be used to get or set geometry paths for shapes. You can use lines, arcs and curves to specify custom shape boundaries.
  • New AlignSubshapes method enables aligning shapes within a shape group.
  • New PlayAcrossSlides and RewindAudio properties are added to AudioFrame class.
  • Added InClickSequence to the list of allowable values for AudioPlayModePreset and AudioPlayModePreset enum types.

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

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. 
.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 is compatible.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 is compatible.  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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
24.3.0 125 4/3/2024
24.2.0 278 2/27/2024
24.1.0 477 1/30/2024
23.11.0 841 12/6/2023
23.10.0 752 11/2/2023
23.9.0 843 10/3/2023
23.7.0 120,223 7/30/2023
23.6.0 1,107 7/3/2023
23.4.0 1,097 4/28/2023
23.3.0 1,119 3/31/2023
23.2.0 1,174 3/2/2023
23.1.0 1,192 2/3/2023
22.12.0 2,539 12/26/2022
22.11.0 1,317 11/29/2022
22.10.0 1,349 10/31/2022
22.9.0 138,126 9/30/2022
22.8.0 1,391 9/2/2022
22.7.0 2,185 8/1/2022
22.6.0 1,429 7/4/2022
22.5.0 1,477 6/6/2022
22.4.0 1,383 5/4/2022
22.3.0 1,433 3/30/2022
22.2.0 1,364 3/4/2022
22.1.0 1,797 2/4/2022
21.12.0 1,421 12/27/2021
21.9.0 4,090 10/9/2021
21.8.0 1,660 9/4/2021
21.6.0 1,373 7/8/2021
21.4.0 1,343 4/26/2021
21.3.0 1,246 4/5/2021
21.2.0 1,748 2/27/2021
21.1.0 1,720 2/1/2021
20.12.0 1,570 12/24/2020
20.10.0 1,560 10/27/2020
20.9.0 1,616 10/5/2020
20.8.0 1,544 9/2/2020
20.7.1 1,526 8/17/2020
20.7.0 1,574 8/4/2020
20.6.0 1,590 7/13/2020
20.5.0 1,612 6/2/2020
20.4.0 1,612 5/8/2020
20.2.0 1,590 3/3/2020
19.10.0 3,746 11/5/2019
19.9.0 1,649 9/30/2019
19.8.0 1,610 9/17/2019
19.7.0 1,698 7/31/2019
19.6.0 1,728 6/28/2019
19.5.0 1,718 6/9/2019
19.3.0 1,645 4/19/2019
19.1.0 1,799 2/18/2019
18.12.0 1,829 1/10/2019
18.11.0 1,777 12/17/2018
18.7.0 1,993 8/17/2018
1.0.6 2,910 9/27/2017
1.0.5 1,897 9/27/2017
1.0.4 2,042 8/14/2017
1.0.3 2,072 1/6/2017
1.0.2 2,322 11/2/2016
1.0.1 2,091 10/21/2016
1.0.0 2,419 2/17/2016