03-07-2025, 05:51 PM
I'd like to point out that QB64PE also supports BDF fonts, and they're one of the simplest things in the world to create and code for, as they're basically in human-readable format from the very get go.
https://en.wikipedia.org/wiki/Glyph_Bitm...ion_Format
It should be a very simple task to take a BMP image like you have above, read the characters, and then write them to a BDF file. At that point, all you have to do is _LOADFONT to load that file, and then _FONT to set that font as the active one, and then just PRINT as normal.
https://en.wikipedia.org/wiki/Glyph_Bitm...ion_Format
It should be a very simple task to take a BMP image like you have above, read the characters, and then write them to a BDF file. At that point, all you have to do is _LOADFONT to load that file, and then _FONT to set that font as the active one, and then just PRINT as normal.