fixup: Format Python code with Black

pull/2139/head
github-actions 1 year ago
parent 72fdf72cb7
commit 559bb41943

@ -117,6 +117,7 @@ def get_text_height(draw, text, font, max_width):
total_height += height total_height += height
return total_height return total_height
def create_fancy_thumbnail(image, text, text_color, padding, wrap=35): def create_fancy_thumbnail(image, text, text_color, padding, wrap=35):
""" """
It will take the 1px from the middle of the template and will be resized (stretched) vertically to accommodate the extra height needed for the title. It will take the 1px from the middle of the template and will be resized (stretched) vertically to accommodate the extra height needed for the title.
@ -130,7 +131,7 @@ def create_fancy_thumbnail(image, text, text_color, padding, wrap=35):
draw = ImageDraw.Draw(image) draw = ImageDraw.Draw(image)
text_height = get_text_height(draw, text, font, wrap) text_height = get_text_height(draw, text, font, wrap)
lines = textwrap.wrap(text, width=wrap) lines = textwrap.wrap(text, width=wrap)
# This are -50 to reduce the empty space at the bottom of the image, # This are -50 to reduce the empty space at the bottom of the image,
# change it as per your requirement if needed otherwise leave it. # change it as per your requirement if needed otherwise leave it.
new_image_height = image_height + text_height + padding * (len(lines) - 1) - 50 new_image_height = image_height + text_height + padding * (len(lines) - 1) - 50

Loading…
Cancel
Save