StreamBitmapDecoder

open class StreamBitmapDecoder : ResourceDecoder<T, Z>

Decodes Bitmaps from InputStreams.

Constructors

Link copied to clipboard
open fun StreamBitmapDecoder(downsampler: Downsampler, byteArrayPool: ArrayPool)

Functions

Link copied to clipboard
open fun decode(    source: InputStream,     width: Int,     height: Int,     options: Options): Resource<Bitmap>
Returns a decoded resource from the given data or null if no resource could be decoded.
Link copied to clipboard
open fun handles(source: InputStream, options: Options): Boolean
Returns true if this decoder is capable of decoding the given source with the given options, and false otherwise.