Package 

Class BitmapFactoryDecoder.Factory

    • Constructor Detail

      • BitmapFactoryDecoder.Factory

        BitmapFactoryDecoder.Factory()
      • BitmapFactoryDecoder.Factory

        BitmapFactoryDecoder.Factory(Integer maxParallelism)
    • Method Detail

      • create

         Decoder create(SourceResult result, Options options, ImageLoader imageLoader)

        Return a Decoder that can decode result or 'null' if this factory cannot create a decoder for the source.

        Implementations must not consume result's ImageSource, as this can cause calls to subsequent decoders to fail. ImageSources should only be consumed in decode.

        Prefer using BufferedSource.peek, BufferedSource.rangeEquals, or other non-consuming methods to check for the presence of header bytes or other markers. Implementations can also rely on SourceResult.mimeType, however it is not guaranteed to be accurate (e.g. a file that ends with .png, but is encoded as a .jpg).

        Parameters:
        result - The result from the Fetcher.
        options - A set of configuration options for this request.
        imageLoader - The ImageLoader that's executing this request.