Aspose.Slides-Cloud.Cpp 22.5.0

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

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

C++ 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++ 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

  • Document format conversion among 20+ supported formats.
  • Download slides and shapes in PDF, SVG & various other formats.
  • PowerPoint presentation split and merge capability.
  • Full access to perform read & write operations on Document Object Model (DOM).
  • Fetch presentation statistics and metadata.
  • Support of Aspose Storage API.

Read & Write Presentation Formats

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

Save Presentation As

Fixed Layout: PDF, PDF/A, XPS
Images: JPEG, PNG, BMP, TIFF, SVG
Web: HTML/HTML5
Other: SWF (export whole presentations)

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.

Prerequisites

To use Aspose Slides Cloud SDK you need to register an account with Aspose Cloud and lookup/create App Key and SID at Cloud Dashboard. There is a free quota available. For more details, see Aspose Cloud Pricing.

Installation

From the command line:

nuget Install-Package Aspose.Slides-Cloud.Cpp

From Package Manager:

PM> Install-Package Aspose.Slides-Cloud.Cpp

Convert a PPTX File to PDF format using C++ Code

std::shared_ptr<asposeslidescloud::api::SlidesApi> api = std::make_shared<asposeslidescloud::api::SlidesApi>(utility::conversions::to_string_t("MyClientId"), utility::conversions::to_string_t("MyClientSecret"));
request->setDocument(std::make_shared<std::ifstream>("MyPresentation.pptx", std::ios::binary));
std::make_shared<std::ifstream> file = std::make_shared<std::ifstream>("MyPresentation.pptx", std::ios::binary);
string_t format = utility::conversions::to_string_t("pdf");
std::ofstream fs("MyPresentation.pdf", std::ios::binary);
api->convert(file, format).get().writeTo(fs);

Product Page | Docs | Demos | Swagger UI | Examples | Blog | Search | Free Support | Free Trial

There are no supported framework assets in this 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 195 4/3/2024
24.2.0 235 2/27/2024
24.1.0 142 1/30/2024
23.12.0 324 1/6/2024
23.11.0 255 12/6/2023
23.10.0 305 11/3/2023
23.9.0 308 10/3/2023
23.6.0 309 7/3/2023
23.4.0 315 4/28/2023
23.3.0 374 3/31/2023
23.2.0 421 3/2/2023
23.1.0 386 2/3/2023
22.12.0 389 12/26/2022
22.11.0 417 11/29/2022
22.10.0 468 11/2/2022
22.9.0 536 9/30/2022
22.8.0 603 8/29/2022
22.7.0 628 8/1/2022
22.6.0 720 7/3/2022
22.5.0 703 6/6/2022
22.4.0 682 5/4/2022
22.3.0 654 3/30/2022
22.2.0 770 3/4/2022
22.1.0 729 2/4/2022
21.12.0 447 12/27/2021
21.9.0 590 10/9/2021
21.8.0 490 9/4/2021
21.6.0 562 7/8/2021
21.4.0 526 5/9/2021
21.3.0 472 4/9/2021
21.2.0 500 2/27/2021
21.1.0 504 2/9/2021
20.12.0 505 1/11/2021
20.10.0 574 10/27/2020
20.9.0 642 10/5/2020
20.8.0 664 9/7/2020
20.7.0 721 8/6/2020