ansipix
A rust library for converting images to ANSI strings to print in a terminal
Usage
Add as dependency
Add the following to your Cargo.toml
= "1.0.0"
Get an ANSI string
use PathBuf;
let img = of_image_file;
match img
Refer to the docs for more information.
Specify a different filter type
ansipix uses the image crate for opening and resizing the image. The of_image_file function uses FilterType::Nearest for resizing. You can specify a different one with the of_image_file_with_filter function.
use PathBuf;
use FilterType;
let img = of_image_file_with_filter;
match img