Render images to the terminal using truecolor and unicode
terminal
cargo add ukiyoe
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); } ```
This project is licensed under either of
at your option.
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.