write borderd text to own layer before merging down
This commit is contained in:
parent
f7a6571762
commit
b05cad5c56
@ -10,15 +10,17 @@ def update_image(original, title, subtitle):
|
||||
renders text on full sized slide
|
||||
make half sized copy for preview and fill top/bottom with white.
|
||||
"""
|
||||
image = original
|
||||
background = original
|
||||
image = Image.new(mode="RGBA", size=(1280,720))
|
||||
font1 = ImageFont.truetype('tahomabd.ttf', 50)
|
||||
font2 = ImageFont.truetype('tahomabd.ttf', 38)
|
||||
draw = ImageDraw.Draw(image)
|
||||
draw.text((20,520), title, font=font1, fill='white',
|
||||
stroke_width=4, stroke_fill='black', spacing=4)
|
||||
draw.text((20,588), subtitle, font=font2, fill='white',
|
||||
stroke_width=3, stroke_fill='black', spacing=4)
|
||||
return image
|
||||
stroke_width=4, stroke_fill='black', spacing=4)
|
||||
background.paste(image, (0,0), image)
|
||||
return background
|
||||
|
||||
def update_thumbnail(image):
|
||||
"""genreate thumbnail from original image"""
|
||||
|
Loading…
Reference in New Issue
Block a user