MultiTransformation

open class MultiTransformation<T> : Transformation<T>

A transformation that applies one or more transformations in iteration order to a resource.

Parameters

<T>

The type of com.bumptech.glide.load.engine.Resource that will be transformed.

Constructors

Link copied to clipboard
open fun MultiTransformation(transformations: Array<Transformation<T>>)
Link copied to clipboard
open fun MultiTransformation(transformationList: Collection<out Transformation<T>>)

Functions

Link copied to clipboard
open fun equals(o: Any): Boolean
Link copied to clipboard
open fun hashCode(): Int
Link copied to clipboard
open fun transform(    context: Context,     resource: Resource<T>,     outWidth: Int,     outHeight: Int): Resource<T>
Transforms the given resource and returns the transformed resource.
Link copied to clipboard
open fun updateDiskCacheKey(messageDigest: MessageDigest)
Adds all uniquely identifying information to the given digest.

Properties

Link copied to clipboard
val CHARSET: Charset
Link copied to clipboard
val STRING_CHARSET_NAME: String