//! this crate provides methods to create, manipulate and output images made out
//! of unicode braille characters such as `⠝`.
//!
//! # Basic Usage
//! ```rust no_run
//! use image::imageops::FilterType;
//! use make_it_braille::{BrailleImg, dithering::Sierra2Row};
//!
//! let mut img = image::open("image.png").unwrap();
//! img = img.resize_exact(64, 64, FilterType::Triangle);
//!
//! let mut img = BrailleImg::from_image(img, Sierra2Row, false);
//!
//! println!("{}", img.as_str(true, true));
//! ```
pub use ;
pub use ;