image_builder/lib.rs
1//! # Overview
2//!
3//! Image Builder is a high-level library that uses the [image](https://crates.io/crates/image)
4//! crate as the engine to generate simple PNG images, but with convenience and simplicity.
5
6mod image;
7mod picture;
8mod rect;
9mod text;
10
11pub use crate::image::FilterType;
12
13/// Contain some basic colors for quick use, as well as the structure that other colors must
14/// follow to be accepted by the library.
15pub mod colors;
16
17pub use crate::image::Image;
18pub use picture::Picture;
19pub use rect::Rect;
20pub use text::Text;