diff --git a/hcatitles.py b/hcatitles.py index 296468b..f04f6f5 100644 --- a/hcatitles.py +++ b/hcatitles.py @@ -24,10 +24,11 @@ def update_image(original, title, subtitle): renders text on full sized slide make half sized copy for preview and fill top/bottom with white. """ + font1 = ImageFont.truetype(resource_path('tahomabd.ttf'), 50) + font2 = ImageFont.truetype(resource_path('tahomabd.ttf'), 38) + # render text text = Image.new(mode="RGBA", size=(1280,720)) - font1 = ImageFont.truetype('tahomabd.ttf', 50) - font2 = ImageFont.truetype('tahomabd.ttf', 38) draw = ImageDraw.Draw(text) draw.text((20,520), title, font=font1, fill='white', stroke_width=4, stroke_fill='black', spacing=4) @@ -36,8 +37,6 @@ def update_image(original, title, subtitle): # render drop dhadow dropshadow = Image.new(mode="RGBA", size=(1280,720)) - font1 = ImageFont.truetype('tahomabd.ttf', 50) - font2 = ImageFont.truetype('tahomabd.ttf', 38) draw = ImageDraw.Draw(dropshadow) draw.text((25,525), title, font=font1, fill='black', stroke_width=4, stroke_fill='black', spacing=4)