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

Function load_font

experiments/human_eval/draw_llm_token_cost_axis.py:53–57  ·  view source on GitHub ↗
(path: str, size: int)

Source from the content-addressed store, hash-verified

51
52
53def load_font(path: str, size: int) -> ImageFont.FreeTypeFont:
54 try:
55 return ImageFont.truetype(path, size)
56 except OSError:
57 return ImageFont.truetype(r"C:\Windows\Fonts\arial.ttf", size)
58
59
60F_MODEL = load_font(BOLD, 24)

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected