add-printing #1

Merged
tux merged 9 commits from add-printing into master 2020-04-12 18:15:20 +02:00
Showing only changes of commit 8946f6eba7 - Show all commits

View file

@ -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')