可以用隔壁 https://github.com/ItMarki/k8x12plus 的字体的,8x14/8x16 的字体暂时还没做…
Poxiao Fonts
27
Posts
1
Topics
162
Followers
168
Following
A member registered May 28, 2021 · View creator page →
Creator of
k12x8 的 fork;简体中文 12x8 像素字体 | fork of k12x8; simplified Chinese 12x8 pixel font
Recent community posts
TL;DR: I uploaded the list in https://gist.github.com/diaowinner/1af3992ec0ff2c75c678e7d0a287c8ba
Just install Python and download the quan.hex and then
a = [] # charset, set as empty
with open("quan.hex") as f: # open the font
for line in f: # read each lines
a.append(int(line.split(":")[0],base=16) # append from the first part of every line, it's Unifont HEX format so convert to dec
print("".join([chr(i) for i in a])) # print in a good format
save it and run it and you’ll see.
BTW I did the whole stuff when there’s no kbitx format, which I prefer more.
Do you mean changing the height? You can change the ascent & descent by editing Source.kbits via Bits’n’Picas.
Convert pcf font file to ttf pixel font comments · Posted in Convert pcf font file to ttf pixel font comments









