orxFontGen is a command line tool that creates orx-formatted custom bitmap fonts (both .png texture and .ini config file).
It gathers the needed characters from the given text files and print them, at the requested size, from a TrueType font file.
orxFontGen is available for all supported development platforms. 1)
It is based on the open source FreeType library.
orxFontGen accepts a number of command line parameters:
Here's its syntax:
orxfontgen -t TextFile [+ ...] -f FontFile -s Size [-o OutputName] [-m] [-a] [-asc] [-p Padding]
You can display its help with
orxfontgen -h
For any parameter, help can be diplayed using its long name:
orxfontgen -h ParameterLongName
Let's now see the parameters in details.
-t / -
-
textlist
The text file list is mandatory. At least one file has to be provided and multiple files have to be separated by spaces. Unfortunately names of input text files can't include spaces for now.
These files contains all the texts you want to display using this custom bitmal font: the needed characters will be extracted from them. They should be encoded either in plain ASCII or in UTF-8.
The textfile itself only contains characters, no other filing. For example, you could create a simple UTF-8 text file (something like mychars.txt) containing:
abcdefghijklmnopqrstuvwxyz
Syntax:
-t TextFile1 [TextFile2 ... TextFileN]
If input files are encrypted with a user-provided key, you need to pass it to orxcrypt using its encryption key parameter.
-f / -
-
font
The TrueType font file parameter is mandatory. It defines the TrueType font file 3) to use for creating the custom bitmap font.
Syntax:
-f FontFile
-s / -
-
size
The size parameter is mandatory. It defines the size, in pixels, for the printed characters in the custom bitmap font.
Syntax:
-s Size
-o / -
-
output
The output parameter is optional. If none is provided, the custom bitmap font will be stored in orxFont.png/orxFont.ini.
-m / -
-
monospace
This parameter is optional. If defined the font will be treated as a fixed width font, ie. all the characters will have the same size.
Otherwise, by default, the tool will output a variable width font.
-a / -
-
advance
This parameter is optional and only used if -m/–monospace
is not defined. If defined the characters will use as width the metrics defined in the font.
Otherwise, by default, the characters will be packed as tight as possible (usually preferable).
-asc / -
-
ascending
This parameter is optional. It will use the ascending value stored in the font to determine the baseline. Unfortunately the standard isn't always respected and this value might mean different things for different fonts. Only try it if your characters don't look correctly aligned vertically.
Otherwise, by default, the max character height will be used to determine the baseline, which should work in most cases.
-p / -
-
padding
This parameter is optional. It defines the extra space, in pixel, to put around a character glyph and that will become part of the character itself after export.