From ffeb80d66f48ad5b597fcb1ce81d89bd2637f2df Mon Sep 17 00:00:00 2001 From: Borzutzki Robert Date: Mon, 25 Nov 2024 22:57:44 +0100 Subject: [PATCH] chnge font size --- examples/date-diff.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/date-diff.py b/examples/date-diff.py index 04a9ed9..3d51b8f 100644 --- a/examples/date-diff.py +++ b/examples/date-diff.py @@ -20,6 +20,8 @@ epd = epd2in13b_V3.EPD() epd.init() #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) font18 = ImageFont.truetype(os.path.join(picdir, 'Font.ttc'), 18) @@ -62,12 +64,12 @@ def init_monitor(): # 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, 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, 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))