diff --git a/memegen/domain/image.py b/memegen/domain/image.py index 778e36cc..fbece5ae 100644 --- a/memegen/domain/image.py +++ b/memegen/domain/image.py @@ -40,7 +40,7 @@ def make_meme(topString, bottomString, filename): # find bottom centered position for bottom text bottomTextPositionX = (imageSize[0] / 2) - (bottomTextSize[0] / 2) - bottomTextPositionY = imageSize[1] - bottomTextSize[1] + bottomTextPositionY = imageSize[1] - bottomTextSize[1] - bottomTextSize[1] / 4 bottomTextPosition = (bottomTextPositionX, bottomTextPositionY) draw = ImageDraw.Draw(img)