From 02bba2f23396e6d4c56e3b182e2290dd3885da7e Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Thu, 21 May 2020 14:15:20 +0200 Subject: [PATCH] fix --- src/youtube/thumbnail.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/youtube/thumbnail.py b/src/youtube/thumbnail.py index a6cd9c5..745894b 100644 --- a/src/youtube/thumbnail.py +++ b/src/youtube/thumbnail.py @@ -53,6 +53,7 @@ def draw_version(img, d, context, get_font_path): realheight = draw.textsize(line, font=font)[1] if cursor + realheight > newimg.size[1]: return False + draw.text((0, cursor), line, font=font, fill=item.get('color')) cursor += item['line-height'] img.paste(newimg, (d.get('x', 0), d.get('y', 0)), newimg) -- 2.20.1