ansipix
A Rust library for converting images to ANSI strings to print in a terminal
Usage
Get an ANSI string
let img = of_image;
println!;
Refer to the docs for more information.
Specify a different filter type
ansipix uses the image crate for
reading and resizing the image. The [of_image] function uses
[FilterType::Nearest] for resizing. You can specify a different one with the
[of_image_with_filter] function.
use FilterType;
let img = of_image_with_filter;
println!;