rm-hull/luma.led_matrix

Possible to Increase the Font Size?

ASparkOfFire opened this issue · 4 comments

Is it Possible to Increase the Font size?

Just create your own character set...

Just create your own character set...

Can you please guide me?

Okay so I managed to create custom character set but the problem is they are cut in half. I want 16x16 Characters for 64x16 matrix. @rm-hull Sorry for bothering but is there any way to use 16x16 characters?

I have no idea, but I'm using a custom font through pillow.
Currently I'm using Silkscreen and White Rabbit for the bigger text

from PIL import *
font = ImageFont.truetype("slkscr.ttf", 8) # Where 8 is the font size
with canvas(device) as draw:
    draw.text((0, 0), "Text", fill="white", font=font)