How to use

``` use mkascii::AsciiBuilder;

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

println!("{}", imageprocessor.tostring());

```