14 releases

0.6.0 Jul 20, 2020
0.5.5 Aug 26, 2016
0.5.4 Feb 22, 2016
0.5.3 Oct 29, 2015
0.5.2 Jul 19, 2015

#33 in #glyph

Download history 1/week @ 2024-11-13 11/week @ 2024-11-20 21/week @ 2024-11-27 16/week @ 2024-12-04 40/week @ 2024-12-11 14/week @ 2024-12-18 10/week @ 2025-01-01 18/week @ 2025-01-08 31/week @ 2025-01-15 17/week @ 2025-01-22 23/week @ 2025-01-29 34/week @ 2025-02-05 22/week @ 2025-02-12 30/week @ 2025-02-19 38/week @ 2025-02-26

130 downloads per month
Used in 2 crates

WTFPL license

44KB
1.5K SLoC

bdf

Build Status

BDF handling library.

[dependencies]
bdf = "*"

Example

This example will draw a given glyph in the given font.

extern crate bdf;

use std::env;
use std::process::exit;
use std::char;

fn main() {
	let font      = bdf::open(env::args().nth(1).expect("missing font file")).unwrap();
	let codepoint = char::from_u32(env::args().nth(2).expect("missing codepoint").parse().unwrap()).expect("invalid codepoint");
	let glyph     = font.glyphs().get(&codepoint).unwrap_or_else(|| exit(1));

	for y in 0 .. glyph.height() {
		for x in 0 .. glyph.width() {
			if glyph.get(x, y) {
				print!("██");
			}
			else {
				print!("  ");
			}
		}

		print!("\n");
	}
}

lib.rs:

BDF font handler.

Dependencies

~0.4–0.8MB
~19K SLoC