glyphr 0.6.0

A no_std, lightweight and simple font rasterizing library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # Glyphr
//!
//! This library focus is not to be the fastest, but one of the most beautiful in the embedded world.

#![no_std]

mod api;
mod renderer;
mod rle;
mod utils;

pub use api::{BulkCallbacks, Callbacks, Glyphr, GlyphrError, RenderConfig, SdfConfig, TextAlign};
pub use glyphr_types::{AlignH, AlignV, BitmapFormat, Font, Glyph};

pub use glyphr_macros::generate_font;
#[cfg(feature = "toml")]
pub use glyphr_macros::generate_fonts_from_toml;