X-Git-Url: https://git.mdrn.pl/audio.git/blobdiff_plain/4660a2368dbaa858636ca3ab8b64433b721b1457..a07174f03214b000dcd01c31b6d397a85b15e82f:/src/youtube/thumbnail.py diff --git a/src/youtube/thumbnail.py b/src/youtube/thumbnail.py index 3f67cac..42e8070 100644 --- a/src/youtube/thumbnail.py +++ b/src/youtube/thumbnail.py @@ -44,6 +44,8 @@ def draw_version(img, d, context, get_font_path): if item.get('vskip'): cursor += item['vskip'] text = item['text'].format(**context) + if not text: + continue if item.get('uppercase'): text = text.upper() font = ImageFont.truetype(get_font_path(item['font-family']), item['font-size']) @@ -53,7 +55,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 - print('x', draw.text((0, cursor), line, font=font, fill=item.get('color'))) + 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)