decodeGif function
Decode a GIF formatted image (first frame for animations).
Implementation
Image decodeGif(List<int> bytes) {
return GifDecoder().decodeImage(bytes);
}
Decode a GIF formatted image (first frame for animations).
Image decodeGif(List<int> bytes) {
return GifDecoder().decodeImage(bytes);
}