This is an internal Cloudinary SDK. The Cloudinary Kotlin-Transformation-Builder-SDK allows you to generate transformations for Cloudinary_Kotlin.
This Readme provides basic installation and usage information. For the complete documentation, see the Kotlin SDK Guide.
SDK Version | Kotlin Version |
---|---|
1.x | > 1.0 |
Add the SDK to your project as a dependency, we recommend using a build management tool such as Maven or Gradle to do this.
Using Gradle:
Add the Cloudinary Kotlin SDK to the dependencies section of your build.gradle
file.
implementation 'com.cloudinary:kotlin-transformation-builder-sdk:1.5.1'
Using Maven:
Add the Cloudinary Kotlin SDK to the list of dependencies in your pom.xml
file.
<dependency>
<groupId>com.cloudinary</groupId>
<artifactId>kotlin-transformation-builder-sdk</artifactId>
<version>1.5.1</version>
<type>pom</type>
</dependency>
// Create your transformation
val transformation = resize(Resize.fill {
width(100)
height(150)
})
This will output the following:
c_fill,h_150,w_100
If you run into an issue or have a question, you can either:
- Open a Github issue (for issues related to the SDK)
- Open a support ticket (for issues related to your account)
Cloudinary is a powerful media API for websites and mobile apps alike, Cloudinary enables developers to efficiently manage, transform, optimize, and deliver images and videos through multiple CDNs. Ultimately, viewers enjoy responsive and personalized visual-media experiences—irrespective of the viewing device.
- Cloudinary Transformation and REST API References: Comprehensive references, including syntax and examples for all SDKs.
- MediaJams.dev: Bite-size use-case tutorials written by and for Cloudinary Developers
- DevJams: Cloudinary developer podcasts on YouTube.
- Cloudinary Academy: Free self-paced courses, instructor-led virtual courses, and on-site courses.
- Code Explorers and Feature Demos: A one-stop shop for all code explorers, Postman collections, and feature demos found in the docs.
- Cloudinary Roadmap: Your chance to follow, vote, or suggest what Cloudinary should develop next.
- Cloudinary Facebook Community: Learn from and offer help to other Cloudinary developers.
- Cloudinary Account Registration: Free Cloudinary account registration.
- Cloudinary Website
Released under the MIT license.