fix fontsizes and label dimensions
This commit is contained in:
parent
eedff1c97e
commit
8946f6eba7
1 changed files with 4 additions and 4 deletions
|
@ -3,12 +3,12 @@ import sys
|
|||
|
||||
address = "".join(sys.stdin.readlines())
|
||||
|
||||
img = Image.new('RGB', (696, 160), color = (255, 255, 255))
|
||||
img = Image.new('RGB', (696, 220), color = (255, 255, 255))
|
||||
|
||||
fnt0 = ImageFont.truetype('fonts/OpenSans-Regular.ttf', 14)
|
||||
fnt = ImageFont.truetype('fonts/OpenSans-Regular.ttf', 32)
|
||||
fnt0 = ImageFont.truetype('fonts/OpenSans-Regular.ttf', 24)
|
||||
fnt = ImageFont.truetype('fonts/OpenSans-Regular.ttf', 54)
|
||||
d = ImageDraw.Draw(img)
|
||||
d.text((20,10), "Netz39 e.V., Leibnizstr. 32, 39104 Magdeburg", font=fnt0, fill=(0,0,0))
|
||||
d.text((20,5), "Netz39 e.V., Leibnizstr. 32, 39104 Magdeburg", font=fnt0, fill=(0,0,0))
|
||||
d.text((20,25), address.strip('\"'), font=fnt, fill=(0, 0, 0))
|
||||
|
||||
img.save('address-label.png')
|
Loading…
Reference in a new issue