fix: use Arial Bold on macOS to avoid Helvetica.ttc rendering bugs in Pillow

Made-with: Cursor
This commit is contained in:
cottongin
2026-04-06 20:40:19 -04:00
parent 38767fbd4b
commit 856978f3cb

View File

@@ -16,6 +16,14 @@ def _get_font(size: int) -> ImageFont.FreeTypeFont:
)
except OSError:
pass
try:
return ImageFont.truetype("/System/Library/Fonts/Supplemental/Arial Bold.ttf", size)
except OSError:
pass
try:
return ImageFont.truetype("/Library/Fonts/Arial Bold.ttf", size)
except OSError:
pass
try:
return ImageFont.truetype("/System/Library/Fonts/Helvetica.ttc", size)
except OSError: