From 4cee4c7109d60d4263c2d9832b0149adadbd1b9f Mon Sep 17 00:00:00 2001 From: Sean Corrigan Date: Thu, 24 Dec 2020 16:47:45 -0500 Subject: [PATCH] smaller font --- display.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/display.py b/display.py index a40eae3..4513dc8 100644 --- a/display.py +++ b/display.py @@ -19,7 +19,7 @@ def sendUpdate(message): draw = ImageDraw.Draw(image) # font15 = ImageFont.truetype('wqy-microhei.ttc', 20) - font15 = ImageFont.truetype('fancyfont.ttf', 28) + font15 = ImageFont.truetype('fancyfont.ttf', 24) draw.text((3, 3), '{}'.format(message), font = font15, fill = 0) image = image.rotate(180) epd.display(epd.getbuffer(image))