imatree 0.1.1

A simple command line tool to generate aesthetically pleasing (and sometimes not so pleasing) images of whatever string you want.
Documentation
1
2
3
4
5
6
7
8
9
//! Domain model and rendering boundary for Imatree.

mod domain;
mod render;

pub use domain::{
    CanvasSize, Caption, DomainError, FontSizing, ImageSpec, OutputFileName, TextColor, TextStyle,
};
pub use render::render_image;