1 2 3 4 5 6 7
//! Holds types and code necessary for converting images to ASCII and rendering as images. Can //! handle different image types. pub(crate) mod converters; pub(crate) mod image_data; pub(crate) mod image_writer; pub(crate) mod render_char_to_png;