Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Byte codes for pixel maps for Ascii characters?

Anyone who ever had to draw text in a graphics application for pre-windows operating systems (i.e. Dos) will know what I'm asking for.

Each ASCII character can be represented by an 8x8 pixel matrix. Each matrix can be represented by an 8 byte code (each byte used as a bit mask for each line of the matrix, 1 bit representing a white pixel, each 0 a black pixel).

Does anyone know where I can find the byte codes for the basic ASCII characters?

Thanks,
BW

like image 783
Binary Worrier Avatar asked Dec 22 '22 06:12

Binary Worrier


2 Answers

Would this do?

Hope this helps.

like image 68
t0mm13b Avatar answered Feb 27 '23 05:02

t0mm13b


There are some good ones here; maybe not 8x8, but still easy parse

tektite

fixed

like image 25
Will Avatar answered Feb 27 '23 05:02

Will