Package com.bumptech.glide.load.resource.bitmap

Types

Link copied to clipboard
open class BitmapDrawableDecoder<DataType> : ResourceDecoder<T, Z>
Decodes an android.graphics.drawable.
Link copied to clipboard
open class BitmapDrawableEncoder : ResourceEncoder<T>
Encodes android.graphics.drawable.
Link copied to clipboard
open class BitmapDrawableResource : DrawableResource<T> , Initializable
A com.bumptech.glide.load.engine.Resource that wraps an This class ensures that every call to get} always returns a new to avoid rendering issues if used in multiple views and is also responsible for returning the underlying android.graphics.
Link copied to clipboard
open class BitmapDrawableTransformation : Transformation<T>
Transforms android.graphics.drawable.
Link copied to clipboard
open class BitmapEncoder : ResourceEncoder<T>
An com.bumptech.glide.load.ResourceEncoder that writes android.graphics.
Link copied to clipboard
class BitmapImageDecoderResourceDecoder : ResourceDecoder<T, Z>
Bitmap specific implementation of DefaultOnHeaderDecodedListener.
Link copied to clipboard
open class BitmapResource : Resource<Z> , Initializable
A resource wrapping a android.graphics.
Link copied to clipboard
abstract class BitmapTransformation : Transformation<T>
A simple com.bumptech.glide.load.Transformation for transforming s that abstracts away dealing with objects for subclasses.
Link copied to clipboard
class BitmapTransitionOptions : TransitionOptions<CHILD, TranscodeType>
Contains Bitmap specific animation options.
Link copied to clipboard
open class ByteBufferBitmapDecoder : ResourceDecoder<T, Z>
Decodes Bitmaps from ByteBuffers.
class ByteBufferBitmapImageDecoderResourceDecoder : ResourceDecoder<T, Z>
ByteBuffer specific implementation of .
Link copied to clipboard
open class CenterCrop : BitmapTransformation
Scale the image so that either the width of the image matches the given width and the height of the image is greater than the given height or vice versa, and then crop the larger dimension to match the given dimension.
Link copied to clipboard
open class CenterInside : BitmapTransformation
Returns the image with its original size if its dimensions match or are smaller than the target's, couple with CENTER_INSIDE in order to center it in Target.
Link copied to clipboard
open class CircleCrop : BitmapTransformation
A Glide BitmapTransformation to circle crop an image.
Link copied to clipboard
class DefaultImageHeaderParser : ImageHeaderParser
A class for parsing the exif orientation and other data from an image header.
Link copied to clipboard
class Downsampler
Downsamples, decodes, and rotates images according to their exif orientation using .
Link copied to clipboard
abstract class DownsampleStrategy
Indicates the algorithm to use when downsampling images.
Link copied to clipboard
open class DrawableTransformation : Transformation<T>
Applies a BitmapTransformation to Drawables by first attempting to convert the Drawable to a Bitmap and then running the Transformation on the converted Bitmap.
Link copied to clipboard
class ExifInterfaceImageHeaderParser : ImageHeaderParser
Uses ExifInterface to parse orientation data.
Link copied to clipboard
open class FitCenter : BitmapTransformation
Scales the image uniformly (maintaining the image's aspect ratio) so that one of the dimensions of the image will be equal to the given dimension and the other will be less than the given dimension.
Link copied to clipboard
class GranularRoundedCorners : BitmapTransformation
A BitmapTransformation which has a different radius for each corner of a bitmap.
Link copied to clipboard
class HardwareConfigState
State and constants for interacting with HARDWARE on Android O+.
Link copied to clipboard
class LazyBitmapDrawableResource : Resource<Z> , Initializable
Lazily allocates a android.graphics.drawable.
Link copied to clipboard
class ParcelFileDescriptorBitmapDecoder : ResourceDecoder<T, Z>
Decodes Bitmaps from ParcelFileDescriptors.
Link copied to clipboard
open class RecyclableBufferedInputStream : FilterInputStream
Wraps an existing InputStream and buffers the input.
Link copied to clipboard
open class ResourceBitmapDecoder : ResourceDecoder<T, Z>
Decodes Bitmaps from resource ids.
Link copied to clipboard
open class Rotate : BitmapTransformation
A BitmapTransformation which rotates the bitmap.
Link copied to clipboard
class RoundedCorners : BitmapTransformation
A BitmapTransformation which rounds the corners of a bitmap.
Link copied to clipboard
open class StreamBitmapDecoder : ResourceDecoder<T, Z>
Decodes Bitmaps from InputStreams.
Link copied to clipboard
class TransformationUtils
A class with methods to efficiently resize Bitmaps.
Link copied to clipboard
class UnitBitmapDecoder : ResourceDecoder<T, Z>
Passes through a (hopefully) non-owned Bitmap as a Bitmap based Resource so that the given Bitmap is not recycled.
Link copied to clipboard
open class VideoBitmapDecoder : VideoDecoder<T>
An com.bumptech.glide.load.ResourceDecoder that can decode a thumbnail frame from a android.os.
Link copied to clipboard
open class VideoDecoder<T> : ResourceDecoder<T, Z>
Decodes video data to Bitmaps from ParcelFileDescriptors and s.