#[repr(usize)]
pub enum BitmapHeight {
Size14,
Size16,
Size18,
Size20,
Size22,
Size24,
Size32,
Size64,
}
Expand description
The height of the bitmap font. The font size will be a a few percent less, because each bitmap letter contains vertical padding for proper alignment of chars (i.e. ÄyA). The width of each bitmap character will be also less than the height, because there is no horizontal padding included.
The available variants depend on the selected Cargo build features.
To see why the term “bitmap” is used, see section Terminology in the README.