Crates.io | pixelart |
lib.rs | pixelart |
version | 0.1.1 |
source | src |
created_at | 2024-05-27 21:17:01.680118 |
updated_at | 2024-05-28 06:42:40.326476 |
description | Show everyone the art hidden inside your code AGAIN. |
homepage | |
repository | https://github.com/immmdreza/pixelart |
max_upload_size | |
id | 1253791 |
size | 126,368 |
Code to pixel image! This is what this library dose at the moment.
Made by pixelart 👾 (This is how).
The very first-stone purpose of this lib is to somehow visualize what your code dose for maybe learning and understating purposes, and of course having fun!
As I already used a lot in tests, If the generated pixel image seems right, you can confirm that your code is also working right. That's one of the "learning and understating purposes", I mentioned before.
We map a simple fixed size 2D array of pixels to pixels on a real image. So you can generate image and see how it changes based on what you do with that array.
Simply!
Take a look at the example below:
// Let the fun begins ...
use pixelart::prelude::*;
pub fn main() {
// A 5x5 pixel canvas.
let mut canvas = PixelCanvas::<5>::default();
// mutably access the pixel at the center.
let center_pixel = &mut canvas[StrictPositions::Center];
// Change its color to blue.
center_pixel.color = PixelColor::BLUE;
// Create and save image based on the canvas.
let image_builder = canvas.default_image_builder().with_scale(5);
image_builder.save("my_first_art.png").unwrap();
}
This will be the result.
Let's break down and see what happened though it must be clear enough.
Create a default PixelCanvas
.
The PixelCanvas
is a wrapper over so called "fixed size 2D array of pixels".
The inner type is a PixelTable
which is an array of PixelRow
which is an array what? you guess.
This some sort of fish syntax ::<5>
indicates the size of our array. A 2D array
has a height (H
, rows count) and a width (W
, columns count).
In this case we set H
to 5
, which implicitly sets W
to 5
if you don't set
that explicitly. So it's equivalent to ::<5, 5>
(::<H, W>
).
You could for example do something like this:
// ---- sniff ----
// A 3x5 pixel canvas.
let mut canvas = PixelCanvas::<3, 5>::default();
// ---- sniff ----
The result will be:
Accessing the pixel at the center.
You can index into canvas using positions (a combination of row and column of a pixel). In this case we use StrictPositions
enum which can magically generate
positions based on canvas size. StrictPositions::Center
is center position (2, 2
as we start from zero you know).
&mut
means I need mutable access to the pixel to change its color, otherwise i can't.
And the we can change color property of the pixel to PixelColor::BLUE
.
Generating image.
The last part in to generate image. We first get the image builder based on canvas
and then we scale it up a bit (.with_scale
), to make it more visible.
And jesus please save me as png (With respect).
You can do many other things like iterating over rows and pixels, creating templates and more ...
The library aims to provide more method and type to make your life easier, some of these functionalities are:
Using MaybePixel
instead of Pixel
in canvas allows us to Create Templates.
In above examples you can review usage of rust iterables and extension methods.
Using Pen to have fun.
Licensed under the mercy and kindness of GOD.
Please use and help making it more useable (Contribute I mean).
Just Remember to have fun 🍟.