A library for manipulating Glyph Bitmap Distribution Format (BDF) Fonts.
Project description
BdfFont
BdfFont is a library for manipulating Glyph Bitmap Distribution Format (BDF) Fonts.
Installation
pip install bdffont
Usage
Load
import os
import shutil
from bdffont import BdfFont
from examples import assets_dir, build_dir
def main():
outputs_dir = os.path.join(build_dir, 'load')
if os.path.exists(outputs_dir):
shutil.rmtree(outputs_dir)
os.makedirs(outputs_dir)
font = BdfFont.load(os.path.join(assets_dir, 'unifont', 'unifont-15.1.05.bdf'))
print(f'name: {font.name}')
print(f'size: {font.point_size}')
print(f'ascent: {font.properties.font_ascent}')
print(f'descent: {font.properties.font_descent}')
for glyph in font.get_glyphs():
print(f'glyph: {glyph.name} - {glyph.code_point:04X}')
font.save(os.path.join(outputs_dir, 'unifont-15.0.01.bdf'), optimize_bitmap=True)
if __name__ == '__main__':
main()
Create
import os
import shutil
from bdffont import BdfFont, BdfGlyph, xlfd
from examples import build_dir
def main():
outputs_dir = os.path.join(build_dir, 'create')
if os.path.exists(outputs_dir):
shutil.rmtree(outputs_dir)
os.makedirs(outputs_dir)
font = BdfFont(
point_size=16,
resolution_xy=(75, 75),
bounding_box_size=(16, 16),
bounding_box_offset=(0, -2),
)
font.add_glyph(BdfGlyph(
name='A',
code_point=ord('A'),
scalable_width=(500, 0),
device_width=(8, 0),
bounding_box_size=(8, 16),
bounding_box_offset=(0, -2),
bitmap=[
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 1, 1, 0, 0, 0],
[0, 0, 1, 0, 0, 1, 0, 0],
[0, 0, 1, 0, 0, 1, 0, 0],
[0, 1, 0, 0, 0, 0, 1, 0],
[0, 1, 0, 0, 0, 0, 1, 0],
[0, 1, 1, 1, 1, 1, 1, 0],
[0, 1, 0, 0, 0, 0, 1, 0],
[0, 1, 0, 0, 0, 0, 1, 0],
[0, 1, 0, 0, 0, 0, 1, 0],
[0, 1, 0, 0, 0, 0, 1, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
],
))
font.properties.foundry = 'Pixel Font Studio'
font.properties.family_name = 'Demo Pixel'
font.properties.add_style_name = xlfd.AddStyleName.SANS_SERIF
font.properties.pixel_size = 16
font.properties.point_size = 160
font.properties.spacing = xlfd.Spacing.PROPORTIONAL
font.properties.average_width = round(sum([glyph.device_width_x * 10 for glyph in font.code_point_to_glyph.values()]) / font.get_glyphs_count())
font.setup_missing_xlfd_properties()
font.properties.default_char = -1
font.properties.font_ascent = 14
font.properties.font_descent = 2
font.properties.x_height = 5
font.properties.cap_height = 7
font.properties.font_version = '1.0.0'
font.properties.copyright = 'Copyright (c) TakWolf'
font.generate_xlfd_font_name()
font.save(os.path.join(outputs_dir, 'my-font.bdf'), optimize_bitmap=True)
if __name__ == '__main__':
main()
Test Fonts
References
- X11 - Bitmap Distribution Format - Version 2.1
- Adobe - Glyph Bitmap Distribution Format (BDF) Specification - Version 2.2
- X Logical Font Description Conventions - X Consortium Standard
- ArchWiki - X Logical Font Description
License
Under the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
bdffont-0.0.18.tar.gz
(1.9 MB
view details)
Built Distribution
bdffont-0.0.18-py3-none-any.whl
(11.9 kB
view details)
File details
Details for the file bdffont-0.0.18.tar.gz
.
File metadata
- Download URL: bdffont-0.0.18.tar.gz
- Upload date:
- Size: 1.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 876cdc300daec3227c4a4767050d8be03001525630db0b396d09c832014fab78 |
|
MD5 | 890b60e95325cc1b844a566799a3c71f |
|
BLAKE2b-256 | 1de5a508ebbf29b33b35ee5b1643e85224e454797fe8ac520e3640468989c442 |
Provenance
File details
Details for the file bdffont-0.0.18-py3-none-any.whl
.
File metadata
- Download URL: bdffont-0.0.18-py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 623f6db25f66723e4c3a23287cfe681fd1c62daf44df1c65c881a648151e0575 |
|
MD5 | 7750f5bed65affc2ec37c71399d309ee |
|
BLAKE2b-256 | c5a8f9a822ac6cce81790a5da7c52a13c738dd033bb55588975aaaa3375e0a83 |