I am looking for a way that allows me to create a glyph bitmap for an alphabet. For example, I create the following for the letter "0", but I wonder if there is an easier way to create a glyph bitmap for the alphabet "az" and "AZ"?
{ 1, 1, 1, 1 },
{ 1, 0, 0, 1 },
{ 1, 0, 0, 1 },
{ 1, 0, 0, 1 },
{ 1, 0, 0, 1 },
{ 1, 0, 0, 1 },
{ 1, 1, 1, 1 },
Thank.
source
share