tinygif

A tiny gif decoder written in no_std Rust. This crate requires about 20kB of memory to decode a gif.

Usage

```rust let image = tinygif::Gif::::fromslice(includebytes!("../small.gif")).unwrap(); loop { for frame in image.frames() { info!("frame {:?}", frame);

    frame.draw(&mut display).unwrap();

    let delay_ms = frame.delay_centis * 10;
    info!("delay {}", delay_ms);
    // Delay here
    // Timer::after(Duration::from_millis(delay_ms as u64)).await;
}

} ```