![](https://img.shields.io/badge/api-v3.0-lightgrey) ![Gem](https://img.shields.io/gem/v/aspose_slides_cloud) ![Gem](https://img.shields.io/gem/dt/aspose_slides_cloud) [![GitHub license](https://img.shields.io/github/license/aspose-slides-cloud/aspose-slides-cloud-ruby)](https://github.com/aspose-slides-cloud/aspose-slides-cloud-ruby/blob/master/LICENSE) # Ruby REST API to Process Presentation in Cloud This repository contains Aspose.Slides Cloud SDK for Ruby source code. This SDK allows you to [process & manipulate PPT, PPTX, ODP, OTP](https://products.aspose.cloud/slides/java) using Aspose.slides Cloud REST APIs in your Ruby applications. You may want to check out Aspose free [Powerpoint to PDF](https://products.aspose.app/slides/conversion), [Powerpoint to Word](https://products.aspose.app/slides/conversion/ppt-to-word), [Powerpoint to JPG](https://products.aspose.app/slides/conversion/ppt-to-jpg), [Powerpoint to PNG](https://products.aspose.app/slides/conversion/ppt-to-png), [PDF to Powerpoint](https://products.aspose.app/slides/import/pdf-to-powerpoint), [JPG to Powerpoint](https://products.aspose.app/slides/import/jpg-to-ppt), and [PNG to Powerpoint](https://products.aspose.app/slides/import/png-to-ppt) 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, PPTX, PPS, PPSX, PPTM, PPSM, POTX, POTM **OpenOffice:** ODP, OTP, FODP **Other**: PDF, PDF/A ## Save Presentation As **Fixed Layout:** XPS **Images:** JPEG, PNG, BMP, TIFF, GIF, SVG **Web:** HTML/HTML5 **Other:** MPEG4, SWF (export whole presentations) ## Enhancements in Version 24.8 * Added **StartSplit** and **StartUploadAndSplit** methods to async API. * Added **ReplacePresentationRegex** and **ReplacePresentationRegexOnline** methods. * Added **HighlightPresentationText** and **HighlightPresentationRegex** methods. * Added **OperationError** class; changed **Operation**.**Error** property type from string to **OperationError**. * Removed **wholeWordsOnly** parameter from **ReplaceShapeRegex** method. ## Enhancements in Version 24.7 * Added **TemplatesPath** property to **Html5ExportOptions** class. It enables using custom templates in conversion to Html5 format. * Added **GetHtml5Templates** method to retrieve the list of default Html5 templates. * Added **Xml** to the list of available export formats. * Added **wholeWordsOnly** parameter to **ReplacePresentationText** and **ReplacePresentationTextOnline** methods. * Added **GradientStyle** property to **ExportOptions** class. * Added **ResterizeUnsupportedFontStyles** property to **PdfExportOptions** class. * Added **Zip64Mode** property to **PptxExportOptions** class. * Added **Transparency** property to **Table** and **TableCell** class. * Removed obsolete **DownloadPortionsAsMathML**, **SavePortionsAsMathML** methods. Use **DownloadMathPortion** and **SaveMathPortion** methods to convert portions to math formats. ## Enhancements in Version 24.6 * Added **HideInk** and **InterpretMaskOpAsOpacity** properties to **PdfExportOptions** class. * Removed **Enqueued** from the list of allowed values for **Operation.Status** property. ## Enhancements in Version 24.5 * Added **options** parameter to **ImportFromPdf** method. You can specify **options.DetectTables** property to control import behavior. * Added **Title** property to **Axis** class for charts. * Added **X**, **Y**, **Width**, **Height**, **Overlay**, **FillFormat**, **EffectFormat** and **LineFormat** properties to **ChartTitle** class. * Added **HasTitle** property to **Chart** class; removed **HasTitle** property from **ChartTitle** class. ## Enhancements in Version 24.4 * Added **DownloadMathPortion** and **SaveMathPortion** methods to convert math portions to math markup formats (MathML or LaTeX). See [documentation](https://docs.aspose.cloud/slides/export-a-math-formula/) for more info. **DownloadPortionAsMathML** and **SavePortionAsMathML** methods are deprecated and will be removed after 24.6. * Added **Marker** property to **DataPoint** class. ## Enhancements in Version 24.3 * Added Markdown (**Md**) to the list of allowed export formats. * Added **DeletePictureCroppedAreas** method to delete cropped areas of pictures. * Added **SlidesLayoutOptions** property to **PdfExportOptions**, **HtmlExportOptions**, **TiffExportOptions** and **ImageExportOptions** classes. You can use it to specify handout or notes/comments layouting options. * Added **AnimateTextType** enum property to **Effect** class. * Added **NotesCommentsLayouting** property to **Html5ExportOptions** class. * Added **BwConversionMode** property to **TiffExportOptions** class. * Added **EmbedImages** boolean property to **Html5ExportOptions** class. * Added **ShowMediaControls** boolean property to **SlideShowProperties** class. * Added **IsDecorative** boolean property to **ShapeBase** class. ## Enhancements in Version 24.2 * Added **GetCommentAuthors** method to get list of comment authors. ## Enhancements in Version 24.1 * Added **GetAvailableFonts** method to get list of installed system & custom fonts. ## Licensing All Aspose.Slides Cloud SDKs are licensed under MIT License. ## How to use the SDK? The complete source code is available in this repository folder. You can either directly use it in your project via source code or get [Ruby gem](https://rubygems.org/gems/aspose_slides_cloud) (recommended). ## Prerequisites To use Aspose Slides Cloud SDK for Ruby you need to register an account with [Aspose Cloud](https://www.aspose.cloud/) and lookup/create App Key and SID at [Cloud Dashboard](https://dashboard.aspose.cloud/#/apps). There is free quota available. For more details, see [Aspose Cloud Pricing](https://purchase.aspose.cloud/pricing). ### Installation ```sh gem install aspose_slides_cloud ``` ### Sample usage The example code below converts a PowerPoint document to PDF format using aspose_slides_cloud library: ```ruby require 'aspose_slides_cloud' configuration = AsposeSlidesCloud::Configuration.new configuration.app_sid = "MyClientId" configuration.app_key = "MyClientSecret" api = AsposeSlidesCloud::SlidesApi.new(configuration) result = api.convert(File.binread("MyPresentation.pptx"), "pdf") File.binwrite("MyPresentation.pdf", result) ``` ## Aspose.Slides Cloud SDKs in Popular Languages | .NET | Java | PHP | Python | Ruby | Node.js | Android | Swift|Perl|Go| |---|---|---|---|---|---|---|--|--|--| | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-dotnet) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-java) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-php) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-python) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-ruby) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-nodejs) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-android) | [GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-swift)|[GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-perl) |[GitHub](https://github.com/aspose-slides-cloud/aspose-slides-cloud-go) | | [NuGet](https://www.nuget.org/packages/Aspose.slides-Cloud/) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-slides-cloud) | [Composer](https://packagist.org/packages/aspose/slides-sdk-php) | [PIP](https://pypi.org/project/asposeslidescloud/) | [GEM](https://rubygems.org/gems/aspose_slides_cloud) | [NPM](https://www.npmjs.com/package/asposeslidescloud) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-slides-cloud) | [Cocoapods](https://cocoapods.org/pods/AsposeslidesCloud)|[Meta Cpan](https://metacpan.org/release/AsposeSlidesCloud-SlidesApi) | [Go.Dev](https://pkg.go.dev/github.com/aspose-slides-cloud/aspose-slides-cloud-go/) | [Product Page](https://products.aspose.cloud/slides/ruby) | [Documentation](https://docs.aspose.cloud/display/slidescloud/Home) | [API Reference](https://apireference.aspose.cloud/slides/) | [Code Samples](https://github.com/aspose-slides-cloud/aspose-slides-cloud-ruby) | [Blog](https://blog.aspose.cloud/category/slides/) | [Free Support](https://forum.aspose.cloud/c/slides) | [Free Trial](https://dashboard.aspose.cloud/#/apps)