chnge font size

This commit is contained in:
Borzutzki Robert 2024-11-25 22:57:44 +01:00
parent bbcf2810be
commit ffeb80d66f

View File

@ -20,6 +20,8 @@ epd = epd2in13b_V3.EPD()
epd.init() epd.init()
#Set fonts #Set fonts
font10 = ImageFont.truetype(os.path.join(picdir, 'Font.ttc'), 10)
font14 = ImageFont.truetype(os.path.join(picdir, 'Font.ttc'), 14)
font16 = ImageFont.truetype(os.path.join(picdir, 'Font.ttc'), 16) font16 = ImageFont.truetype(os.path.join(picdir, 'Font.ttc'), 16)
font18 = ImageFont.truetype(os.path.join(picdir, 'Font.ttc'), 18) font18 = ImageFont.truetype(os.path.join(picdir, 'Font.ttc'), 18)
@ -62,12 +64,12 @@ def init_monitor():
# Drawing on the Horizontal image # Drawing on the Horizontal image
logging.info("1.Drawing on the Horizontal image...") logging.info("1.Drawing on the Horizontal image...")
drawblack.text((4, 0), 'Lieber Reinhold, auf dich warten noch: ' + str(duration.days) + " Tage", font = font16, fill = 0) drawblack.text((4, 0), 'Lieber Reinhold, auf dich warten noch: ' + str(duration.days) + " Tage", font = font10, fill = 0)
drawblack.text((4, 16), 'Oder ' + str(round(duration.days / 7,3)) + " Wochen", font = font16, fill = 0) drawblack.text((4, 16), 'Oder ' + str(round(duration.days / 7,3)) + " Wochen", font = font16, fill = 0)
drawblack.text((4, 32), 'Oder ' + str(round(duration.days / 30,3)) + " Monate", font = font16, fill = 0) drawblack.text((4, 32), 'Oder ' + str(round(duration.days / 30,3)) + " Monate", font = font16, fill = 0)
drawblack.text((4, 48), 'Oder ' + str(duration.days * 24) + " Stunden", font = font16, fill = 0) drawblack.text((4, 48), 'Oder ' + str(duration.days * 24) + " Stunden", font = font16, fill = 0)
drawblack.text((4, 64), 'Oder ' + str(duration.days / 365) + " Jahre", font = font16, fill = 0) drawblack.text((4, 64), 'Oder ' + str(duration.days / 365) + " Jahre", font = font16, fill = 0)
drawblack.text((4, 80), "Bis du am " + str(ruhestand.strftime("%A %B %d.%m.%Y")), font = font16, fill = 0) drawblack.text((4, 80), "Bis du am " + str(ruhestand.strftime("%A %B %d.%m.%Y")), font = font14, fill = 0)
epd.display(epd.getbuffer(HBlackimage), epd.getbuffer(HRYimage)) epd.display(epd.getbuffer(HBlackimage), epd.getbuffer(HRYimage))