Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -70,7 +70,7 @@ def create_label(background_image, model_data):
|
|
70 |
# Choose a font and size. Change path/size as needed.
|
71 |
# If you don't have a custom font file, you can use a PIL built-in font.
|
72 |
try:
|
73 |
-
font = ImageFont.truetype("Roboto-Regular.ttf",
|
74 |
except:
|
75 |
# Fallback to a default PIL font if 'arial.ttf' is not found
|
76 |
font = ImageFont.load_default()
|
@@ -78,7 +78,7 @@ def create_label(background_image, model_data):
|
|
78 |
# You can customize the positions, colors, etc. For instance:
|
79 |
# We'll just place the text in a simple stacked format at a fixed position.
|
80 |
# Position variables (x, y) - Adjust as needed.
|
81 |
-
x_position =
|
82 |
y_position = 400
|
83 |
line_spacing = 20
|
84 |
|
|
|
70 |
# Choose a font and size. Change path/size as needed.
|
71 |
# If you don't have a custom font file, you can use a PIL built-in font.
|
72 |
try:
|
73 |
+
font = ImageFont.truetype("Roboto-Regular.ttf", 200) # or "Arial.ttf", etc.
|
74 |
except:
|
75 |
# Fallback to a default PIL font if 'arial.ttf' is not found
|
76 |
font = ImageFont.load_default()
|
|
|
78 |
# You can customize the positions, colors, etc. For instance:
|
79 |
# We'll just place the text in a simple stacked format at a fixed position.
|
80 |
# Position variables (x, y) - Adjust as needed.
|
81 |
+
x_position = 300
|
82 |
y_position = 400
|
83 |
line_spacing = 20
|
84 |
|