This repository contains Aspose.Slides Cloud SDK for Swift source code. This SDK allows you to process & manipulate PPT, PPTX, ODP, OTP using Aspose.slides Cloud REST APIs in your Swift 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.
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)
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 the library using Cocoapods or Packages (recommended).
To use Aspose Slides Cloud SDK for Java 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.
Minimal supported Swift version is 4.2.3.
To use the SDK in a swift package, add a the SDK to dependencies in your Package.swift:
// swift-tools-version:4.2.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "MyPackage",
dependencies: [
.package(url: "https://github.com/aspose-slides-cloud/aspose-slides-cloud-swift", from: "22.4.0"),
],
targets: [
.target(
name: "MyPackage"
dependencies: ["AsposeSlidesCloud"]),
]
)
To use the SDK as a Cocoapod, add "pod 'AsposeSlidesCloud'" line to your Podfile.
target 'myproj' do
...
pod 'AsposeSlidesCloud', '~> 22.6.0'
end
The example code below converts a PowerPoint document to PDF format using AsposeSlidesCloud:
import Foundation
import AsposeSlidesCloud
let dispatchGroup = DispatchGroup()
AsposeSlidesCloudAPI.appSid = "MyClientId"
AsposeSlidesCloudAPI.appKey = "MyClientSecret"
dispatchGroup.enter()
let input = FileManager.default.contents(atPath: "MyPresentation.ppt")!
SlidesAPI.convert(input, "pdf") { (response, e) -> Void in
do {
let url = URL(fileURLWithPath: "MyPresentation.pdf")
try (response as! Data).write(to: url)
} catch {
print("Error saving file: \(error).")
}
if (e != nil) {
print("An error occured: \(e).")
}
dispatchGroup.leave()
}
dispatchGroup.notify(queue: DispatchQueue.main) {
exit(EXIT_SUCCESS)
}
dispatchMain()
.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
link |
Stars: 0 |
Last commit: 5 weeks ago |
Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics