BDF font format reader
Find a file
Dominic 1c153b273c
All checks were successful
Rust / test (push) Successful in 29s
Rust / rustfmt (push) Successful in 21s
Rust / readme (push) Successful in 5s
Release bdf-reader 0.1.3
2025-08-28 17:56:41 +02:00
.forgejo/workflows ci: update actions 2025-08-28 17:52:19 +02:00
src update dependencies 2025-08-28 17:45:27 +02:00
tests render bitmaps to ascii art 2022-10-15 17:55:12 +02:00
.gitignore initial commit 2022-10-09 18:13:50 +02:00
Cargo.toml Release bdf-reader 0.1.3 2025-08-28 17:56:41 +02:00
LICENSE-EPL-2.0 add unifont to be used for testing later 2022-10-11 12:52:10 +02:00
LICENSE-OFL-1.1 add unifont to be used for testing later 2022-10-11 12:52:10 +02:00
LICENSE.md add unifont to be used for testing later 2022-10-11 12:52:10 +02:00
README.md update readme 2025-08-28 17:39:26 +02:00
rustfmt.toml initial commit 2022-10-09 18:13:50 +02:00

bdf-reader License: EPL-2.0 bdf-reader on crates.io bdf-reader on docs.rs Source Code Repository

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)?;