Image-reading crate for plotting data and transposing image contents into a data structure with the precision decided by the user.
// Name of image path. In this case it's in a folder called images next to src
let foo = "images/icon.png";
let bar_str = &foo;
let pixl_struct = picolo::load_picture(bar_str);
// Print all the contents derived from image
for i in pixl_struct {
println!("x {} y {} red {} green {} blue: {}", i[0].x, i[0].y,
i[0].color.red, i[0].color.green, i[0].color.blue);
}#TODO: