[SOLVED]Looking for a 16X12 bit pixel font for LCD

Hi

I am looking for a 16 * 12 pixel font for a LCD display.

I want it in this form an ASCII font in an array of uint16_t
Just done "Zero" char here as a test case for my code, the finished font will be [96][12]

const PROGMEM uint16_t ASCII_SEVEN[1][12] = {
{0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000}, //
{0x0000, 0x0000,0x3FFC,0x6006,0x6006,0x6006,0x6006,0x6006,0x6006,0x3FFC,0x0000,0x0000}// 0
};

I know how to draw a font and make the code, but is there a way to AUTOMATE the process get a ttF file of BMP file and spit out the C code header.

I found this great website for 8 * X fonts but he does not explain how he got from the ttf file to the code rasterize them to a bitmap font.and then turn the bitmap font into a C header file,

Regards

You would probably be able to do the conversion by hand in less time than it would take to find such a utility, assuming that such a utility even exists.