-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmeme_generator.py
49 lines (38 loc) · 1.64 KB
/
meme_generator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import textwrap
from PIL import Image, ImageDraw, ImageFont
def generate_meme(image_path, top_text, bottom_text='', font_path='./fonts/impact/impact.ttf', font_size=9,
stroke_width=5):
# load image
im = Image.open(image_path)
draw = ImageDraw.Draw(im)
image_width, image_height = im.size
# load font
font = ImageFont.truetype(font=font_path, size=int(image_height * font_size) // 100)
# convert text to uppercase
top_text = top_text.upper()
bottom_text = bottom_text.upper()
# text wrapping
char_width, char_height = font.getsize('A')
chars_per_line = image_width // char_width
top_lines = textwrap.wrap(top_text, width=chars_per_line)
bottom_lines = textwrap.wrap(bottom_text, width=chars_per_line)
# draw top lines
y = 10
for line in top_lines:
line_width, line_height = font.getsize(line)
x = (image_width - line_width) / 2
draw.text((x, y), line, fill='white', font=font, stroke_width=stroke_width, stroke_fill='black')
y += line_height
# draw bottom lines
y = image_height - char_height * len(bottom_lines) - 15
for line in bottom_lines:
line_width, line_height = font.getsize(line)
x = (image_width - line_width) / 2
draw.text((x, y), line, fill='white', font=font, stroke_width=stroke_width, stroke_fill='black')
y += line_height
# save meme
im.save('meme-' + im.filename.split('/')[-1])
if __name__ == '__main__':
top_text = "I dont always make memes"
bottom_text = "But when I do, I use Python"
generate_meme('./idontalways.jpg', top_text=top_text, bottom_text=bottom_text)