2021-04-09 12:10:36 +03:00
|
|
|
#!/usr/bin/env python3
|
2023-12-21 14:13:31 +03:00
|
|
|
from __future__ import annotations
|
2024-01-20 14:23:03 +03:00
|
|
|
|
2014-07-07 23:31:20 +04:00
|
|
|
import base64
|
|
|
|
import os
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
# create font data chunk for embedding
|
|
|
|
font = "Tests/images/courB08"
|
|
|
|
print(" f._load_pilfont_data(")
|
2020-07-16 12:43:29 +03:00
|
|
|
print(f" # {os.path.basename(font)}")
|
2014-07-07 23:31:20 +04:00
|
|
|
print(" BytesIO(base64.decodestring(b'''")
|
2018-11-13 13:45:52 +03:00
|
|
|
with open(font + ".pil", "rb") as fp:
|
|
|
|
print(base64.b64encode(fp.read()).decode())
|
2014-07-07 23:31:20 +04:00
|
|
|
print("''')), Image.open(BytesIO(base64.decodestring(b'''")
|
2018-11-13 13:45:52 +03:00
|
|
|
with open(font + ".pbm", "rb") as fp:
|
|
|
|
print(base64.b64encode(fp.read()).decode())
|
2014-07-07 23:31:20 +04:00
|
|
|
print("'''))))")
|