BDF font format reader
| .forgejo/workflows | ||
| src | ||
| tests | ||
| .gitignore | ||
| Cargo.toml | ||
| LICENSE-EPL-2.0 | ||
| LICENSE-OFL-1.1 | ||
| LICENSE.md | ||
| README.md | ||
| rustfmt.toml | ||
bdf-reader

BDF Reader
A reader for the BDF (Glyph Bitmap Distribution Format) font format.
Example
use bdf_reader::Font;
use std::{fs::File, io::BufReader};
let reader = BufReader::new(File::open("path/to/font.bdf")?);
let font = Font::read(reader)?;