change font size

This commit is contained in:
Borzutzki Robert 2024-11-25 23:01:10 +01:00
parent 61432fdf72
commit 656ed147b5

View File

@ -65,10 +65,10 @@ 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, in nur noch: ' + str(duration.days) + " Tagen", font = font12, fill = 0) drawblack.text((4, 0), 'Lieber Reinhold, in nur noch: ' + str(duration.days) + " Tagen", font = font12, fill = 0)
drawblack.text((4, 16), 'Oder ' + str(round(duration.days / 7,2)) + " Wochen", font = font16, fill = 0) drawblack.text((4, 16), 'Oder ' + str(round(duration.days / 7,2)) + " Wochen", font = font14, fill = 0)
drawblack.text((4, 32), 'Oder ' + str(round(duration.days / 30,2)) + " Monate", font = font16, fill = 0) drawblack.text((4, 32), 'Oder ' + str(round(duration.days / 30,2)) + " Monate", font = font14, 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 = font14, fill = 0)
drawblack.text((4, 64), 'Oder ' + str(round(duration.days / 365,2)) + " Jahre", font = font16, fill = 0) drawblack.text((4, 64), 'Oder ' + str(round(duration.days / 365,2)) + " Jahre", font = font14, fill = 0)
drawblack.text((4, 80), "Bis du am " + str(ruhestand.strftime("%A %B %d.%m.%Y")), font = font14, 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))