MCPcopy Create free account
hub / github.com/OpenRaiser/PaperFlow / load_font

Function load_font

experiments/human_eval/draw_llm_token_cost_ref_bar.py:56–60  ·  view source on GitHub ↗
(path: str, size: int)

Source from the content-addressed store, hash-verified

54
55
56def load_font(path: str, size: int) -> ImageFont.FreeTypeFont:
57 try:
58 return ImageFont.truetype(path, size)
59 except OSError:
60 return ImageFont.truetype(r"C:\Windows\Fonts\arial.ttf", size)
61
62
63F_TITLE = load_font(BOLD, 43)

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected