This repository contains Aspose.Slides Cloud SDK for Java source code. This SDK allows you to process & manipulate PPT, PPTX, ODP, OTP using Aspose.slides Cloud REST APIs in your android applications.
You may want to check out Aspose free Powerpoint to PDF, Powerpoint to Word, Powerpoint to JPG, Powerpoint to PNG, PDF to Powerpoint, JPG to Powerpoint, and PNG to Powerpoint converters because they are live implementations of popular conversion processes.
- 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, PPTX, PPS, PPSX, PPTM, PPSM, POTX, POTM OpenOffice: ODP, OTP, FODP Other: PDF, PDF/A
Fixed Layout: XPS Images: JPEG, PNG, BMP, TIFF, GIF, SVG Web: HTML/HTML5 Other: MPEG4, SWF (export whole presentations)
- 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.
- Added DownloadMathPortion and SaveMathPortion methods to convert math portions to math markup formats (MathML or LaTeX). See documentation for more info. DownloadPortionAsMathML and SavePortionAsMathML methods are deprecated and will be removed after 24.6.
- Added Marker property to DataPoint class.
- 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.
- Added GetCommentAuthors method to get list of comment authors.
- Added GetAvailableFonts method to get list of installed system & custom fonts.
All Aspose.Slides Cloud SDKs are licensed under MIT License.
The complete source code is available in this repository folder. You can either directly use it in your project via source code or get Jar (recommended).
To use Aspose Slides Cloud SDK for Android you need to register an account with Aspose Cloud and lookup/create App Key and SID at Cloud Dashboard. There is free quota available. For more details, see Aspose Cloud Pricing.
Add this lines to your build.gradle:
allprojects {
repositories {
...
maven {
url "http://artifact.aspose.cloud/repo/"
}
}
}
dependencies {
...
implementation 'com.aspose:aspose-slides-cloud-android:22.4.0'
implementation 'com.google.code.gson:gson:2.8.1'
implementation 'com.squareup.okhttp:okhttp:2.7.5'
implementation 'com.squareup.okhttp:logging-interceptor:2.7.5'
implementation 'io.swagger:swagger-annotations:1.5.15'
implementation 'org.threeten:threetenbp:1.3.5'
implementation 'org.reflections:reflections:0.9.11'
}
The example code below converts a PowerPoint document to PDF format using aspose-slides-cloud-android library:
Configuration configuration = new Configuration();
configuration.setAppSid("MyClientId");
configuration.setAppKey("MyClientSecret");
SlidesApi api = new SlidesApi(configuration);
File response = api.convert(Files.readAllBytes(Paths.get("MyPresentation.pptx")), ExportFormat.PDF, null, null, null);
System.out.println("My PDF was saved to " + response.getPath());
You can also check Demo Application.
.NET | Java | PHP | Python | Ruby | Node.js | Android | Swift | Perl | Go |
---|---|---|---|---|---|---|---|---|---|
GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub | GitHub |
NuGet | Maven | Composer | PIP | GEM | NPM | Maven | Cocoapods | Meta Cpan | Go.Dev |
Product Page | Documentation | API Reference | Code Samples | Blog | Free Support | Free Trial