mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 12:17:14 +03:00
d50445ff30
Similar to the recent adoption of Black. isort is a Python utility to sort imports alphabetically and automatically separate into sections. By using isort, contributors can quickly and automatically conform to the projects style without thinking. Just let the tool do it. Uses the configuration recommended by the Black to avoid conflicts of style. Rewrite TestImageQt.test_deprecated to no rely on import order.
19 lines
609 B
Python
Executable File
19 lines
609 B
Python
Executable File
#!/usr/bin/env python
|
|
from __future__ import print_function
|
|
|
|
import base64
|
|
import os
|
|
|
|
if __name__ == "__main__":
|
|
# create font data chunk for embedding
|
|
font = "Tests/images/courB08"
|
|
print(" f._load_pilfont_data(")
|
|
print(" # %s" % os.path.basename(font))
|
|
print(" BytesIO(base64.decodestring(b'''")
|
|
with open(font + ".pil", "rb") as fp:
|
|
print(base64.b64encode(fp.read()).decode())
|
|
print("''')), Image.open(BytesIO(base64.decodestring(b'''")
|
|
with open(font + ".pbm", "rb") as fp:
|
|
print(base64.b64encode(fp.read()).decode())
|
|
print("'''))))")
|