public static interface GifDecoder.BitmapProvider
Modifier and Type | Method and Description |
---|---|
Bitmap |
obtain(int width,
int height,
Bitmap.Config config)
Returns an
Bitmap with exactly the given dimensions and config. |
byte[] |
obtainByteArray(int size)
Returns a byte array used for decoding and generating the frame bitmap.
|
int[] |
obtainIntArray(int size)
Returns an int array used for decoding/generating the frame bitmaps.
|
void |
release(Bitmap bitmap)
Releases the given Bitmap back to the pool.
|
void |
release(byte[] bytes)
Releases the given byte array back to the pool.
|
void |
release(int[] array)
Release the given array back to the pool.
|
@NonNull Bitmap obtain(int width, int height, Bitmap.Config config)
Bitmap
with exactly the given dimensions and config.width
- The width in pixels of the desired Bitmap
.height
- The height in pixels of the desired Bitmap
.config
- The Bitmap.Config
of the desired Bitmap
.void release(Bitmap bitmap)
byte[] obtainByteArray(int size)
size
- the size of the byte array to obtainvoid release(byte[] bytes)
int[] obtainIntArray(int size)
void release(int[] array)