1 unstable release

0.1.0 Mar 15, 2022

#49 in #ascii-art

Custom license

7KB
97 lines

How to use

use mkascii::AsciiBuilder;

// You can use AsciiBuilder::from_bytes if you alread have the data in memory
let mut image_processor = AsciiBuilder::from_path("/path/to/image/file")
.with_rows_cols(10, 20) // This is optional, and if left out mkascii will detect this from your currnt terminal size
.build();

println!("{}", image_processor.to_string());

Dependencies

~13MB
~62K SLoC