mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 01:47:47 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			582 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			582 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import annotations
 | 
						|
 | 
						|
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'''")
 | 
						|
    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("'''))))")
 |