All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cloudinary.transformation.resize.ImaggaCrop.kt Maven / Gradle / Ivy

package com.cloudinary.transformation.resize

class ImaggaCrop(
    dimensions: Dimensions, relative: Boolean? = null,
    regionRelative: Boolean? = null
) :
    Resize(dimensions, relative, regionRelative) {
    override val actionType = "imagga_crop"

    class Builder : BaseBuilder() {
        override fun getThis() = this
        override fun build() = ImaggaCrop(
            Dimensions(width, height, aspectRatio),
            relative,
            regionRelative
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy