Spaces:
Running
Running
Update chatbot/plugins/join_request.py
Browse files
chatbot/plugins/join_request.py
CHANGED
@@ -51,7 +51,7 @@ def generate_captcha_multiple_choice():
|
|
51 |
img = Image.new('RGB', (300, 60), color=(255, 255, 255))
|
52 |
d = ImageDraw.Draw(img)
|
53 |
try:
|
54 |
-
font = ImageFont.truetype("arial.ttf",
|
55 |
except IOError:
|
56 |
font = ImageFont.load_default()
|
57 |
d.text((10, 10), captcha_text, font=font, fill=(0, 0, 0))
|
|
|
51 |
img = Image.new('RGB', (300, 60), color=(255, 255, 255))
|
52 |
d = ImageDraw.Draw(img)
|
53 |
try:
|
54 |
+
font = ImageFont.truetype("arial.ttf", 45)
|
55 |
except IOError:
|
56 |
font = ImageFont.load_default()
|
57 |
d.text((10, 10), captcha_text, font=font, fill=(0, 0, 0))
|