Update app.py
Browse files
app.py
CHANGED
|
@@ -24,7 +24,7 @@ def leaderboard(names):
|
|
| 24 |
if not os.path.exists(font_path):
|
| 25 |
return "Error: Font file 'Gagalin.otf' not found", 500
|
| 26 |
|
| 27 |
-
font = ImageFont.truetype(font_path,
|
| 28 |
|
| 29 |
# Image dimensions
|
| 30 |
img_width, img_height = bg.size
|
|
|
|
| 24 |
if not os.path.exists(font_path):
|
| 25 |
return "Error: Font file 'Gagalin.otf' not found", 500
|
| 26 |
|
| 27 |
+
font = ImageFont.truetype(font_path, 39) # Adjust font size as needed
|
| 28 |
|
| 29 |
# Image dimensions
|
| 30 |
img_width, img_height = bg.size
|