decodeBmpFile function

Future<Image?> decodeBmpFile(
  1. String path
)

Decode a BMP formatted image from a file. If the platform does not support dart:io, null will be returned.

Implementation

Future<Image?> decodeBmpFile(String path) async {
  final bytes = await readFile(path);
  if (bytes == null) {
    return null;
  }
  return BmpDecoder().decode(bytes);
}