Package com.bumptech.glide.load.resource.transcode

Types

Link copied to clipboard
open class BitmapBytesTranscoder : ResourceTranscoder<Z, R>
An com.bumptech.glide.load.resource.transcode.ResourceTranscoder that converts s into byte arrays using (android.graphics.Bitmap.CompressFormat, int, java.io.
Link copied to clipboard
open class BitmapDrawableTranscoder : ResourceTranscoder<Z, R>
An com.bumptech.glide.load.resource.transcode.ResourceTranscoder that converts s into android.graphics.drawable.
Link copied to clipboard
class DrawableBytesTranscoder : ResourceTranscoder<Z, R>
Obtains byte[] from BitmapDrawables by delegating to a ResourceTranscoder for Bitmaps to byte[]s.
Link copied to clipboard
open class GifDrawableBytesTranscoder : ResourceTranscoder<Z, R>
An com.bumptech.glide.load.resource.transcode.ResourceTranscoder that converts into bytes by obtaining the original bytes of the GIF from the com.bumptech.glide.load.resource.gif.GifDrawable.
Link copied to clipboard
interface ResourceTranscoder<Z, R>
Transcodes a resource of one type to a resource of another type.
Link copied to clipboard
open class TranscoderRegistry
A class that allows com.bumptech.glide.load.resource.transcode.ResourceTranscoders to be registered and retrieved by the classes they convert between.
Link copied to clipboard
open class UnitTranscoder<Z> : ResourceTranscoder<Z, R>
A simple ResourceTranscoder that simply returns the given resource.