slavfox / Cozette

A bitmap programming font optimized for coziness 💜
MIT License
2.93k stars 43 forks source link

psf fonts? #47

Closed goolord closed 3 years ago

goolord commented 3 years ago

i want to use cozette for my console, especially large sizes since my eyesight is poor

slavfox commented 3 years ago

Consider using bdf2psf. I haven't tried it myself, so I can't vouch for whether it'll work or not.

goolord commented 3 years ago

i tried it, it does work but i couldn't figure out how to configure the size

slavfox commented 3 years ago

Bitmap fonts are designed and drawn at a specific size; Cozette is a 6x13px font and is stored as a series of 6x13px bitmaps. They don't scale the way vector fonts do; a quick google search found bdfresize - something like bdfresize -f 2 cozette.bdf > cozette12px.bdf should output a 2x upscaled file, which you should be able to convert to psf with bdf2psf.

goolord commented 3 years ago

ok, that should be good enough for my use, thanks so much for your help