1
0
mirror of https://gitlab.com/MisterBiggs/bdfparse.git synced 2025-06-16 06:26:39 +00:00

remove example code

This commit is contained in:
Anson 2019-07-15 23:05:49 -07:00
parent b9fd445da7
commit f6753c3fc4

View File

@ -178,13 +178,3 @@ def parse_chars(bdfFile):
return font
return font
font = parse_chars("9x18.bdf")
matrix = font["A"]
text = "nson"
for letter in text:
matrix = np.concatenate((matrix, font[letter]), axis=1)
plt.imshow(matrix)
plt.show()