ansinator_ansi_image 0.1.2

A Library defining specific structures for representing and converting an image in ansi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! ansi_image provides. 
//!
//! + AnsiImage: A general representation of an image in ansi.
//!
//!
//! + AnsiAscii: A representation of an image in ascii.
//! + AnsiBlock: A representation of an image in unicode half-block characters and spaces.
//! + AnsiBraile: A representation of an image in 8-dot Braile.
//! + AnsiUniblock: A representation of an image in unicode sextant characters.
pub mod ansi;
pub mod ascii;
pub mod braile;
pub mod block;
pub mod uniblock;
pub mod error;