1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Overview
//!
//! Image Builder is a high-level library that uses the [image](https://crates.io/crates/image)
//! crate as the engine to generate simple PNG images, but with convenience and simplicity.

mod image;
mod picture;
mod rect;
mod text;

/// Contain some basic colors for quick use, as well as the structure that other colors must follow to be accepted by the library.
pub mod colors;
pub use crate::image::FilterType;
/// This is the structure of the image that will be created. Use the `new` function to get started.
pub use crate::image::Image;
pub use picture::Picture;
pub use rect::Rect;
pub use text::Text;