font icon indicating copy to clipboard operation
font copied to clipboard

5x7 General Purpose Font

7x5 Font

Demo

A simple font for OS dev, embedded, etc.

For a 3x3 font, check out https://github.com/petabyt/font3x3

Features:

  • A-Z
  • a-z
  • 0-9
  • 28 symbols
  • No specification needed, it's dead simple
  • C Preprocessor options
  • Some extended ASCII characters

Usage:

For easy modification, the font is stored in 7x5 character array.
Simply loop through the array to find the char you need, then
loop through the characters, (height = 7, width = 5). When you
encounter a '#', plot. If space, don't plot.

Compile demo.c for a simple terminal-based example.