Pillow/Tests/createfontdatachunk.py

17 lines
568 B
Python
Raw Normal View History

2015-11-04 00:16:12 +03:00
#!/usr/bin/env python
import base64
import os
if __name__ == "__main__":
# create font data chunk for embedding
font = "Tests/images/courB08"
print(" f._load_pilfont_data(")
print(f" # {os.path.basename(font)}")
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())
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())
print("'''))))")