tinygif icon indicating copy to clipboard operation
tinygif copied to clipboard

A no_std GIF library for embedded applications(embedded-graphics)

Results 3 tinygif issues
Sort by recently updated
recently updated
newest added

Hi, I'll probably take a look at this myself, creating an issue first incase you can point out it's impossible or any pitfalls. What I'm after is a `from_iter`, similar...

https://github.com/andelf/tinygif/assets/72891/80841ed6-eff5-4f76-8265-9b09ba76ff9f ```rust let image = tinygif::Gif::::from_slice(include_bytes!("../../cat.gif")).unwrap(); loop { for frame in image.frames() { let start = Instant::now(); frame.draw(&mut display.translated(Point::new(10, 80))).unwrap(); let elapsed = start.elapsed().as_millis(); info!("draw {}ms", elapsed); let delay_ms =...