ukiyoe

docs.rs docs

Render images to the terminal using truecolor and unicode.

Screen Shot 2022-07-29 at 5 25 01 AM

This package was meant to be used by it's sister package kimono.

terminal cargo add ukiyoe

Examples

Render to terminal with width and height.

```rust use ukiyoe::Image;

fn main() { let mut image = Image::new("examples/test.png"); image.render(100, 40); } ```

Render at a specific location.

```rust use ukiyoe::Image;

fn main() { let mut image = Image::new("examples/test.png"); image.renderatposition(0, 0, 100, 40); } ```

Art

ukiyoe_portland

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in ukiyoe by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.