0

I downloaded nice bitmap fonts and I can easily convert them to many other bitmap font formats (.fon,.sfd ...) using FontForge

but I'm missing very basic thing - how to generate actual bitmap image?

Given input text string like this (enumeration ASCII characters 32...126 ):

!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_abcdefghijklmnopqrstuvwxyz{|}~`

I want to get output picture like this:

enter image description here

Why? Because my 3D engine cannot read .fon or .sfd format, it can read images and use them as texture atlas

1
  • Have a look at ttf2png.
    – dirkt
    Commented May 22, 2018 at 21:20

1 Answer 1

0

You could try pbmtext from the netpbm toolkit. It can read a couple different font formats (BDF, PBM) and generate images using the font.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .