#art #image #interactive #graphics

pixel-canvas

A crate to make it easy to build interactive computer art with just a pixel buffer

5 releases

0.2.3 Jun 19, 2022
0.2.2 Dec 11, 2020
0.2.1 Mar 1, 2020
0.2.0 Sep 16, 2019
0.1.0 Aug 25, 2019

#104 in Rendering

Download history 30/week @ 2023-11-22 15/week @ 2023-11-29 19/week @ 2023-12-06 134/week @ 2023-12-13 126/week @ 2023-12-20 10/week @ 2023-12-27 92/week @ 2024-01-03 262/week @ 2024-01-10 108/week @ 2024-01-17 15/week @ 2024-01-24 75/week @ 2024-01-31 116/week @ 2024-02-07 138/week @ 2024-02-14 119/week @ 2024-02-21 131/week @ 2024-02-28 47/week @ 2024-03-06

450 downloads per month
Used in fpgrars

MIT/Apache

32KB
568 lines

Crates.io Docs.rs Build Status

Pixel Canvas

This crate is designed to make it easy to build interactive computer art with just a pixel buffer. For inspiration, consider looking at https://shadertoy.com and http://www.iquilezles.org/www/index.htm, there are a lot of cool art pieces to see and explanations of fun techniques!

Usage

To make a piece of art, you create and configure a Canvas object, and then you ask it to render with your code. The canvas will do state management and hand you an image to modify. Whatever modifications you make to the image will be displayed on the screen.

Example

use pixel_canvas::{Canvas, Color, input::MouseState};

fn main() {
    // Configure the window that you want to draw in. You can add an event
    // handler to build interactive art. Input handlers for common use are
    // provided.
    let canvas = Canvas::new(512, 512)
        .title("Tile")
        .state(MouseState::new())
        .input(MouseState::handle_input);
    // The canvas will render for you at up to 60fps.
    canvas.render(|mouse, image| {
        // Modify the `image` based on your state.
        let width = image.width() as usize;
        for (y, row) in image.chunks_mut(width).enumerate() {
            for (x, pixel) in row.iter_mut().enumerate() {
                let dx = x as i32 - mouse.x;
                let dy = y as i32 - mouse.y;
                let dist = dx * dx + dy * dy;
                *pixel = Color {
                    r: if dist < 128 * 128 { dy as u8 } else { 0 },
                    g: if dist < 128 * 128 { dx as u8 } else { 0 },
                    b: (x * y) as u8,
                }
            }
        }
    });
}

or run an included example (with nightly):

cargo +nightly run --example api_example

License: MIT OR Apache-2.0

Dependencies

~7–11MB
~210K SLoC