embedded-sprites License: none embedded-sprites on crates.io embedded-sprites on docs.rs Source Code Repository Rust Version: none

Embedded no std graphics library for bundling image at compile time, to be used at the embedded-graphics crate.

The include_image macro can be usede to create a Image from an existing image file at compile time. Every image formats supported by the image crate can be used. The image will be automatically be converted to the requested pixelcolor. Current only rgb pixelcolors are supported.

```rust use embeddedgraphics::pixelcolor::Bgr565; use embeddedsprites::{image::Image, include_image};

[include_image]

const IMAGE: Image = "grass.png"; ```

To draw a Image it must be put inside a Sprite. You can use the same Image inside multiple Sprites;

```rust use embeddedgraphics::{geometry::Point, pixelcolor::Bgr565, Drawable}; use embeddedsprites::sprite::Sprite;

const SPRITE1: Sprite = Sprite::new(Point::new(0, 0), &IMAGE); const SPRITE2: Sprite = Sprite::new(Point::new(32, 32), &IMAGE); SPRITE1.draw(&mut display).unwrap(); SPRITE2.draw(&mut display).unwrap(); ```