decodeBmp function

Image decodeBmp(
  1. Uint8List bytes, {
  2. BmpDecodeOptions? options,
})

Decodes an uncompressed or bitfield BMP image to straight RGBA.

Implementation

Image decodeBmp(
  Uint8List bytes, {
  BmpDecodeOptions? options,
}) => decodeImage(
  bytes,
  options: options,
);