decodeWebPFile function

Future<Image?> decodeWebPFile(
  1. String path,
  2. {int? frame}
)

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

Implementation

Future<Image?> decodeWebPFile(String path, {int? frame}) async {
  final bytes = await readFile(path);
  if (bytes == null) {
    return null;
  }
  return WebPDecoder().decode(bytes, frame: frame);
}