This is a simple graphics library for drawing to a buffer, mainly designed to be used with Rust Graphics Library or Pixels
It has basic shape drawing, bitmap text and image rendering.
The Graphics
struct needs a mutable slice to work on and so mostly likely you'll need to create the struct and pass in the buffer from the rendering library every frame.
In your Cargo.toml
file add
toml
buffer-graphics-lib = "0.1.0"
This bit of boilerplate/framework must be used inside your code to use this library:
rust
let mut buffer: [u8; 1920000] = [0; 800 * 600 * 4]; //800 x 600 RGBA
let mut graphics = Graphics::new(&mut buffer)?;
Drawing is then quite simple:
rust
graphics.draw_text("Some text", None, TextPos::Px(1, 1), TextSize::Normal, BLACK);
graphics.draw_image(20, 20, &image);
graphics.draw_rect(1, 1, 100, 100, LIGHT_GRAY);
Both are enabled by default
image_loading
Load files as Image
s
rust
let image = load_image("resources/example.png")?;
graphics.draw_image(40, 20, &image);
serde_derive
Adds derive Serialize
and Deserialize
for Rect