mirror of
https://github.com/KimigaiiWuyi/GenshinUID.git
synced 2025-05-31 12:40:38 +08:00
10 lines
246 B
Python
10 lines
246 B
Python
from pathlib import Path
|
|
|
|
from PIL import ImageFont
|
|
|
|
FONT_ORIGIN_PATH = Path(__file__).parent / 'yuanshen_origin.ttf'
|
|
|
|
|
|
def genshin_font_origin(size: int) -> ImageFont.FreeTypeFont:
|
|
return ImageFont.truetype(str(FONT_ORIGIN_PATH), size=size)
|