1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#![allow(clippy::unusual_byte_groupings)] pub mod fonts; use { crate::{panic, Png}, bitvec::{ order::{Lsb0, Msb0}, view::AsBits, }, std::fmt::Debug, }; /// A bitmap font that can be used to render text onto a [`Png`] image. pub struct Font;