I need to convert some X11 bitmap fonts to an array in C for a 128x64 OLED Display.
I saw some fonts like /usr/share/fonts/X11/misc/9x15-ISO8859-1.pcf.gz
The result should look like
/* Standard ASCII 6x8 font */
const char PROGMEM font6x8[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,// sp
0x00, 0x00, 0x00, 0x2f, 0x00, 0x00,// !
0x00, 0x00, 0x07, 0x00, 0x07, 0x00,// "
Are the tools for converting a pcf font to an array of chars in C? Where are good resources for bitmap fonts?
Is there anything else I have missed?