A library for parsing Bits'N'Picas native save format files ('.kbits' and '.kbitx')
Project description
KbitFont.Python
KbitFont is a library for parsing Bits'N'Picas native save format files (.kbits and .kbitx).
Installation
pip install kbitfont
Usage
Create
import shutil
from examples import build_dir
from kbitfont import KbitFont, KbitGlyph
def main():
outputs_dir = build_dir.joinpath('create')
if outputs_dir.exists():
shutil.rmtree(outputs_dir)
outputs_dir.mkdir(parents=True)
font = KbitFont()
font.props.em_ascent = 14
font.props.em_descent = 2
font.props.line_ascent = 14
font.props.line_descent = 2
font.props.x_height = 7
font.props.cap_height = 10
font.names.version = '1.0.0'
font.names.family = 'My Font'
font.names.style = 'Regular'
font.names.manufacturer = 'Pixel Font Studio'
font.names.designer = 'TakWolf'
font.names.description = 'A pixel font'
font.names.copyright = 'Copyright (c) TakWolf'
font.names.license_description = 'This Font Software is licensed under the SIL Open Font License, Version 1.1'
font.names.vendor_url = 'https://github.com/TakWolf/kbitfont-python'
font.names.designer_url = 'https://takwolf.com'
font.names.license_url = 'https://openfontlicense.org'
font.characters[65] = KbitGlyph(
x=0,
y=14,
advance=8,
bitmap=[
[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00],
[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00],
[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00],
[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00],
[0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00],
[0x00, 0x00, 0xFF, 0x00, 0x00, 0xFF, 0x00, 0x00],
[0x00, 0x00, 0xFF, 0x00, 0x00, 0xFF, 0x00, 0x00],
[0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00],
[0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00],
[0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00],
[0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00],
[0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00],
[0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00],
[0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00],
[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00],
[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00],
],
)
font.named_glyphs['.notdef'] = KbitGlyph(
x=0,
y=14,
advance=8,
bitmap=[
[0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF],
[0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF],
[0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF],
[0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF],
[0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF],
[0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF],
[0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF],
[0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF],
[0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF],
[0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF],
[0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF],
[0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF],
[0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF],
[0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF],
[0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF],
[0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF],
],
)
font.save_kbits(outputs_dir.joinpath('my-font.kbits'))
font.save_kbitx(outputs_dir.joinpath('my-font.kbitx'))
if __name__ == '__main__':
main()
Load Kbits
import shutil
from examples import assets_dir, build_dir
from kbitfont import KbitFont
def main():
outputs_dir = build_dir.joinpath('load_kbits')
if outputs_dir.exists():
shutil.rmtree(outputs_dir)
outputs_dir.mkdir(parents=True)
font = KbitFont.load_kbits(assets_dir.joinpath('macintosh', 'Athens.kbits'))
print(f'name: {font.names.family}')
print(f'size: {font.props.em_height}')
print(f'ascent: {font.props.line_ascent}')
print(f'descent: {font.props.line_descent}')
print()
for code_point, glyph in sorted(font.characters.items()):
print(f'char: {chr(code_point)} ({code_point:04X})')
print(f'xy: {(glyph.x, glyph.y)}')
print(f'dimensions: {glyph.dimensions}')
print(f'advance: {glyph.advance}')
for bitmap_row in glyph.bitmap:
text = ''.join(' ' if color <= 127 else '██' for color in bitmap_row)
print(f'{text}*')
print()
font.save_kbits(outputs_dir.joinpath('Athens.kbits'))
if __name__ == '__main__':
main()
Load Kbitx
import shutil
from examples import assets_dir, build_dir
from kbitfont import KbitFont
def main():
outputs_dir = build_dir.joinpath('load_kbitx')
if outputs_dir.exists():
shutil.rmtree(outputs_dir)
outputs_dir.mkdir(parents=True)
font = KbitFont.load_kbitx(assets_dir.joinpath('macintosh', 'Athens.kbitx'))
print(f'name: {font.names.family}')
print(f'size: {font.props.em_height}')
print(f'ascent: {font.props.line_ascent}')
print(f'descent: {font.props.line_descent}')
print()
for code_point, glyph in sorted(font.characters.items()):
print(f'char: {chr(code_point)} ({code_point:04X})')
print(f'xy: {(glyph.x, glyph.y)}')
print(f'dimensions: {glyph.dimensions}')
print(f'advance: {glyph.advance}')
for bitmap_row in glyph.bitmap:
text = ''.join(' ' if color <= 127 else '██' for color in bitmap_row)
print(f'{text}*')
print()
font.save_kbitx(outputs_dir.joinpath('Athens.kbitx'))
if __name__ == '__main__':
main()
Specifications
Font Struct
Kbits
Kbitx
Dependencies
License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
kbitfont-0.0.6.tar.gz
(8.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
kbitfont-0.0.6-py3-none-any.whl
(11.1 kB
view details)
File details
Details for the file kbitfont-0.0.6.tar.gz.
File metadata
- Download URL: kbitfont-0.0.6.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e3f26cb19b632b54ab12332d38c31ff7441db3b9f998886935ce888e50d5d7c
|
|
| MD5 |
9df300b2229f6557d4b2386ca29122a7
|
|
| BLAKE2b-256 |
65c3d59bfa5da83557837a6a7371ea113ebd18d6b70ec8e04662fc622bcc67e4
|
File details
Details for the file kbitfont-0.0.6-py3-none-any.whl.
File metadata
- Download URL: kbitfont-0.0.6-py3-none-any.whl
- Upload date:
- Size: 11.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cade670538273a4764d71d58e901c97125a3cb42f42c46d0149e26f56271beb
|
|
| MD5 |
e785ed06798e61f1cc62c1ab2b570da7
|
|
| BLAKE2b-256 |
a3b0a3ea368caab2d9a6be35a365cbcdf92bfc41f89058982a05b2fd8164f110
|