bdfparser icon indicating copy to clipboard operation
bdfparser copied to clipboard

BDF (Glyph Bitmap Distribution) format bitmap font file parser library in Python 🔤🔣

Results 4 bdfparser issues
Sort by recently updated
recently updated
newest added

Adds support for `pathlib.Path` filename paths, not just `str`

The library breaks when it encounters a double newline in the .bdf font file

[This font pack](https://www.x.org/archive/individual/font/font-isas-misc-1.0.3.tar.gz) uses GB2312 encoding (which is different from ICU), and when I try to display text using them, the glyphs seems to be remapped to the Unicode codepoint....

Some font files I am working with have a blank line between the `ENDPROPERTIES` and `CHARS` lines, eg [here](https://github.com/olikraus/u8g2/blob/master/tools/font/bdf/8x13.bdf). This is breaking the `Font` import with the following: ```python >>>...