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

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

package com.cloudinary.transformation.resize

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy