ImageMagick does this quite easily. I don't have Arial or Times on my computer, so I tested with FreeSans, but I don't see why it wouldn't work with any true-type font:
convert -font /usr/share/fonts/truetype/freefont/FreeSans.ttf -pointsize 72 label:A A.jpg
If you want to get all the uppercase and lowercase letters and numbers in one go, you could script it with bash like so:
font=/usr/share/fonts/truetype/freefont/FreeSans.ttf
pointsize=72
for letter in {a..z} {A..Z} {0..9}; do
convert -font "$font" -pointsize "$pointsize" label:"$letter" "$letter".jpg
done
Simply changing the extension of the output file to any well-known format will change the image format. Given your intended use, maybe you want to try .xpm and add the -monochrome option, for example:
convert -font /usr/share/fonts/truetype/freefont/FreeSans.ttf -pointsize 72 label:A -monochrome A.xpm
especially convienent because .xpm can be #included in C programs, eliminating the need for any image reading library.