img-gen-renderer
A crate to generate images from a deterministic data structure.
See img-gen-spec about how to build the deterministic data structure that this library uses.
Example
This library simply provides a Generator struct and an Image struct (which
basically wraps around the image::RgbaImage struct).
use Generator;
async
Cache-enabled
This library's Generator struct employs a cache to reduce repeated HTTP requests,
when downloading fonts (and their metadata), while rendering an image.
The cache location can be explicitly specified (see Generator API docs).