I want to convert text from a text file with a ttf font to bmp.
I managed to create it with the following command but the output.bmp is not right I cannot get each character in a 16x16 cell
The original file how the output should look is in this url and also my output.
https://www.dropbox.com/sh/qarfqwir0mb1 ... twyoa?dl=0
My output does create a bmp it should be a 4 color bmp and each character should be size 16x16 and followed by the next cell 16x16 containing the next character.convert -pointsize 12 -background black -fill white -font verdana -size 1920x32 caption:@dF_16x16.txt output.bmp
When possible I would like to have the second line of characters in the textfile dF_16x16.txt in a different color.
Any help would be appreciated.