HomeHome

Fonts in Qt/Embedded


Supported formats

Qt/Embedded supports four font formats:

Support for each of these font formats, except QPF which is always enabled, can be enabled or disabled independently by using the Qt/Embedded Features Definition There is support in Qt/Embedded for writing a QPF font file from any font, thus you can initially enable TTF and BDF formats, save QPF files for the fonts and sizes you need, then remove TTF and BDF support.

Memory requirements

With TTF fonts, each character in the font at a given point size is only rendered when first used in a drawing or metrics operation. With BDF fonts all characters are rendered when the font is used. With QPF fonts, the characters are stored in the same format as Qt uses when drawing.

As an example, a 10-point Times font containing the ASCII characters uses around 1300 bytes when stored in QPF format.

Taking advantage of the way the QPF format is structured, Qt/Embedded memory-maps the data rather than reading and parsing it. This reduces the RAM consumption even further.

The scalable fonts use a larger amount of memory per font, but these fonts can give a memory saving if many different sizes of each font are needed.

Smooth fonts

TTF, PFA, and QPF fonts can be rendered as smooth anti-aliased fonts to give superior readability, especially on low-resolution devices. The difference between smooth and non-smooth fonts is illustrated below (you may need to change your display to low resolution to see the difference).

In Qt/Embedded 2.2.1, smooth fonts use 8 times as much memory as non-smooth fonts. This multiplier will be reduced to a configurable 2 or 4 (ie. 4-level and 16-level shading rather than the current excessive 256-level shading).

Unicode

All fonts used by Qt/Embedded use the Unicode character encoding. Most fonts available today do not actually contain all the Unicode characters, but they do use the Unicode characters ordering. A single complete 16-point Unicode font uses over 1Mb of memory.

The font definition file

When Qt/Embedded applications run, they look for a file called $QTDIR/etc/fonts/fontdir or /usr/local/qt-embedded/etc/fonts/fontdir. This file defines the fonts available to the application. It has the following format:

name file renderer italic weight size flags

where:

name Helvetica, Times, etc.
file helvR0810.bdf, verdana.ttf, etc.
renderer BDF or TTF
italic y or n
weight 50 is Normal, 75 is Bold, etc.
size 0 for scalable or 10 times pointsize (eg. 120 for 12pt)
flags Flag characters:
s = smooth (anti-aliased)
u = unicode range when saving (default is Latin 1)
a = ascii range when saving (default is Latin 1)

The font definition file does not specify QPF fonts - these are loaded directly from the directory containing the fontdir file, and must be named name_size_weightitalicflag.qpf, where:

name helvetica, times, etc. (lowercase)
size 10 times pointsize (eg. 120 for 12pt)
italicflag i for italic or nothing.
weight 50 is Normal, 75 is Bold, etc.

If an application is run with the -savefonts command-line option, then whenever a font other than a QPF font is used, a corresponding QPF file is saved. This allows you to easily find the font usage of your applications and to generate QPF files so that you can eventually reduce the memory usage of your applications by disabling TTF and BDF support from Qt/Embedded. option, or by modifying the initialization of qws_savefonts in kernel/qapplication_qws.cpp of the Qt/Embedded library source code. In extreme cases of memory-saving, it is possible to save partially-rendered fonts (eg. only the characters in "Product NameTM") if you are certain that these are the only characters you will need from the font. See QMemoryManager::savePrerenderedFont() for this functionality.

Notes

The font definition file, naming conventions for font files, and the format of QPF files may change in versions of Qt/Embedded after 2.2.1.

When enabled, Qt/Embedded uses the powerful FreeType2 library to implement TrueType and Type1 support.


Copyright © 2000 TrolltechTrademarks
Qt version 2.2.1