I am writing a low C application and I plan to use an array to store my fonts.
The problem is that the font I would like to use is in TrueType format. Like me:
Convert TTF to format B, W, bitmap font without any AA (not strict programming) associated with);
Parse the B & W font bitmap into a byte array C.
What format should be used for bitmap? It should be simple enough so that I, a novice programmer with a little over a year of experience, could write a parser to save it in the specified array.
I do not want to use external libraries, and I would like to keep C Std. Lib. use to a minimum. This is for a college project, and I want to write everything myself.
source share