4. XFree86 4.x

XFree86 4.0 introduced native support for TrueType fonts, along with other new features. The enhanced font support is based on xfsft from Juliusz Chroboczek, which in turn is based on the FreeType font library originally from Mark Leisher, so the configuration is similar to xfsft and Red Hat's patched xfs. As of 4.0.2, XFree86 begins to support anti-aliasing which is a technique for smoothing font outlines (see section below).

The FontPath is still in XF86Config, as always. For Red Hat 6/7 using a stock XFree86 4.x (i.e. NOT the Red Hat 7.x supplied version), this will mean moving the Red Hat xfs FontPath from /etc/X11/fs/config back to XF86Config. A separate font server is no longer needed just for TrueType support. You may disable it, unless it is needed to serve fonts to other clients in a network environment. See the section below for Red Hat 7.x specific configuration issues.

 Section "Files"
  FontPath "/usr/X11R6/lib/X11/fonts/misc:unscaled"
  FontPath "/usr/X11R6/lib/X11/fonts/100dpi:unscaled"
  FontPath "/usr/X11R6/lib/X11/fonts/75dpi:unscaled"
  FontPath "/usr/X11R6/lib/X11/fonts/misc"
  FontPath "/usr/X11R6/lib/X11/fonts/Type1"
  FontPath "/usr/X11R6/lib/X11/fonts/Speedo"
  FontPath "/usr/share/fonts/default/Type1"
  FontPath "/usr/local/share/fonts/ttfonts"
  FontPath "/usr/X11R6/lib/X11/fonts/100dpi"
  FontPath "/usr/X11R6/lib/X11/fonts/75dpi"
 EndSection
    

In order to use TrueType, you must also specify which font module the X server should be using in the "Module" section:

 Section "Module"
  Load  "freetype"
  Load  "speedo"
  Load  "type1"
  <load other modules....>
 EndSection
    

Note that there can be only one 'Module' section, so include any other modules here as well.

You also must to create fonts.scale and fonts.dir file for each TrueType font directory, just like for xfsft and Red Hat's xfs. ttmkfdir will come in handy for fonts.scale. See the xfs Section 3.2.2 above for more details and examples.

xtt is another available TrueType module that is best known for supporting ideographic (Oriental) type fonts. You can use either, but only one at a time.

X server command line options are still the same as previous versions of X:

$ startx -- -dpi 100

4.1. Anti-aliasing

Anti-aliasing is a technique for producing even smoother, crisper looking fonts by subtly softening the sharp, jagged edges. This has long been a feature of Apple and Microsoft font rendering, and is now making it's way into X via the X Rendering Extension specification thanks to Keith Packard. The new extensions provide other benefits as well. Distributions that support anti-aliasing with their stable/official versions are now being released.

That is the good news. The bad news is that not all drivers support anti-aliasing yet. This is a moving target, so you will have to dig around to find whether your chipset is supported or not. The recently released 4.2 should have near universal support. More not-so-good news is that few applications are actually taking advantage of this yet. We will have to wait for the various toolkits (TK, GTK, Xaw, etc) to catch up.

If you are reading this long after the publication date (February 2002), hopefully most of these shortcomings will have been overcome. All hardware will eventually be supported, mainstream distros will have shipped releases that include the new extensions, and they will be enabled by default. Many apps will look better since they will be "AA" aware, and we won't have to jump through any configuration hoops just to make it work. In the meantime, read on ...

4.1.1. Requirements

Minimum requirements for Anti-Aliasing:

4.1.2. Installation

Keith Packard has a very brief summary of the steps required for building, installing and configuring from source at http://www.xfree86.org/~keithp/render/aafont.txt. No need to reprint it here.

Newer distro releases are likely to have the foundation support for anti-aliasing available now. Red Hat, for instance, has it available as of Red Hat 7.1.

To verify the necessary components, first make sure the "freetype" module (and any others) are loaded. Check the X server output:


 (II) LoadModule: "freetype"
 (II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.a
 (II) Module freetype: vendor="The XFree86 Project"
        compiled for 4.0.3, module version = 1.1.9
        Module class: XFree86 Font Renderer
        ABI class: XFree86 Font Renderer, version 0.2
 (II) Loading font FreeType

Then verify if the "RENDER" extension is available, either check with xdpyinfo, or check the X server log, typically /var/log/XFree86.0.log:

 
 (II) Initializing built-in extension MIT-SHM
 (II) Initializing built-in extension XInputExtension
 (II) Initializing built-in extension XTEST
 (II) Initializing built-in extension XKEYBOARD
 (II) Initializing built-in extension LBX
 (II) Initializing built-in extension XC-APPGROUP
 (II) Initializing built-in extension SECURITY
 (II) Initializing built-in extension XINERAMA
 (II) Initializing built-in extension XFree86-Bigfont
 (II) Initializing built-in extension RENDER

If "RENDER" is there, anti-aliasing and the other advanced rendering extensions should be available.

4.1.3. Xft Configuration

By Danny Tholen

Xft is an interface to the freetype rasterizer written by Keith Packard, member of the XFree86 Project, Inc. It allows applications to use fonts from the new X render extension using a unified font naming scheme. In /etc/X11/XftConfig (or /usr/X11R6/lib/X11/XftConfig) you will find a configuration file which can be adapted to suit your personal taste. In this section I will explain the syntax and demonstrate some things you can do with this file.

The following information is based on 4.0.3. 4.1 is just released, and there may be a few new wrinkles not touched on here.

4.1.3.1. XftConfig Structure

The basic structure revolves around a 'pattern'. A pattern is a set of name/value-list pairs, each value-list contains one or more typed values. A certain application requests a font, for example:

 family: "Arial"
 size: 12
 encoding: "iso8859-1"
    

A size 12 arial font in latin-1 encoding. The Xft extension will now try to patch this pattern to all of the fonts available in the system. And selecting the one with the best score. Before the matching is done Xft looks in XftConfig. The requested pattern can here be extended before use. An example is:

 match any family == "Arial" edit antialias = true;
   

This will enable anti-aliasing for all fonts of the family Arial.

Also, the X server is queried to list all of its fonts; the XLFD contains just enough information to match fonts roughly.

Here's a list of attributes used in matching fonts (in priority order, this may not be up to date anymore!):

 foundry        font foundry (string, like "monotype")
 encoding       font encoding (string, like "iso8859-1")
 spacing        font spacing (integers or proportional (0), mono (100), 
                charcell (110))
 bold           is the font bold? (boolean)
 italic         is the font italic? (boolean)
 antialias      is the font anti-aliased? (boolean)
 family         font family (string)
 size           font size (double)
 style          font style (string, like "Bold Italic")
 slant          font slant (roman, italic, oblique)
 weight         font weight ( integers or light, medium (100), demi-bold, 
                bold, black)
 rasterizer     not yet used (probably "TrueType", "Type1", ...)
 outline        are outlines available? (boolean)
   

4.1.3.2. XftConfig Syntax

4.1.3.3. XftConfig Examples

And now I´ll try to list a few useful configurations and explain them. Note that it is configured for my system, and I may use different fonts than you, so try to adapt the examples to your own needs.

  1. How do I make fonts available to Xft?

    List your Type 1 and TrueType font directories with "dir". On my system (Mandrake 7.2) this becomes:

     dir "/usr/X11R6/lib/X11/fonts/Type1"
     dir "/usr/X11R6/lib/X11/fonts/drakfont"
        

  2. How do I use a user specific XftConfig file?

    Put an .xftconfig file in your user directory and add:

     includeif   "~/.xftconfig"
        

    to your standard XftConfig. This will enable a user specific configuration file, but it will not complain if there is no such file.

  3. How do I make aliases for my fonts?

    I noted that my KDE console asks for "mono" fonts when it is looking for a fixed font. "console" is used when I select "linux" in the font menu of the KDE konsole. Therefore, I used two aliases for fonts which are also named "fixed":

     match any family == "fixed"     edit family =+ "mono";
     match any family == "console"   edit family =+ "mono";
        

  4. Anti-aliasing my fonts are blurry and makes me dizzy!

    Although there is a big fuzz around AA in X, good fonts actually look better if they are not anti-aliased. The anti-aliasing blurs the fonts by adding gray pixels to the edges, and this may strain your eyes if you looking at them for a long time. (Your eyes will try to get the fonts sharper, which of course is not working because they are blurred;) However, for very small fonts, anti-aliasing may increase the readability of the fonts, because with sharp edges, there are too little pixels available for your mind to figure out what it means. And for bigger fonts, the edges become very jagged when not anti-aliased, so here you also might want to have aliased fonts. Of course you can also turn off the anti-aliasing for specific fonts. In other operating systems, most truetype fonts are not anti-aliased between 8 and 12 pixels, while only large Type1 fonts are anti-aliased.

    Use the following in your XftConfig to anti-alias only fonts of specific sizes:

     match 
           any size > 8 
           any size < 15 
     edit 
           antialias = false;
        

  5. My fixed fonts do not appear or look _very_ wrong in the KDE konsole or similar programs!

    I noted that somehow a lot of fixed font do not tell Xft that they are fixed, and thus, mono spaced. Therefore only a part of the font is displayed. We can manually set the spacing for these fonts (this assumes you have fixed aliased with mono as in question 3 above):

     match 
           any family == "mono" 
     edit 
           spacing = mono;
        

  6. My Symbol, Webdings, etc. fonts do not show up!

    For some reason some (symbol) fonts are not correctly recognized, and Xft will show your default font, or a font which has the closest match (which is generally not what you mean at all). For Adobe Symbol and MS-webdings I did the following to get them working:

     match 
           any family == "webdings" 
     edit 
           antialias = false;
           encoding += "glyphs-fontspecific";


     match 
           any family == "symbol" 
     edit 
           antialias = false;
           encoding += "glyphs-fontspecific";
        

    A useful way of figuring out these things is to activate debugging with:

     export XFT_DEBUG=1024
        

    This will generate a lot of output, especially if you have many fonts, because it lists the properties and scores of every font available. You can also use other values. For a nice summary of what happens (requested font, XftConfig substitutions, X server additions and the finally matched font), you can use XFT_DEBUG=2.

  7. Why do my KDE programs start now soooo slooow?

    The Xft mechanism in XFree prior to 4.1 had to parse the XftConfig file each time a program was started. And the info of all these fonts had to be re-read. As of X 4.1.0, a cache is used and starting applications using Xft is much faster. Especially if you have many fonts this can be very useful. So, upgrading XFree86, and related packages, is a good idea.

  8. I have a LCD screen on my laptop, can I use sub-pixel hinting instead of normal anti-aliasing?

    Yes you can. Sub-pixel hinting uses colors instead of gray pixels to do the AA. I do not have a LCD screen so I do not have any idea of how it looks but you can play with the "rgba" setting. Try:

     match edit rgba=bgr;
        

    or use rgb if you have a different type of monitor. For vertical AA you can try vbgr and vbgr.

  9. My fonts still look bad!

    Good quality fonts are needed to start with. If you do not have some good TrueType fonts, it is worth it to go and look for them on the Internet. Other reasons why your fonts still look bad can be because of your build of freetype2. Snapshots versions before 2.0.2 were compiled with an option that had some patent issues. Therefore, the standard 2.0.2 and 2.0.3 compiles without this option. To fix this, download the freetype2 source rpm and change in include/freetype/config/ftoption.h line 314:

      #undef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
        

    to:

      #define TT_CONFIG_OPTION_BYTECODE_INTERPRETER
        

    and rebuild with this modified source. See the freetype2 README file for details. Adobe Courier looks terrible on my system, so I made an alias so that Lucida console is displayed instead. If anyone can get it to display nicely I would appreciate knowing about it.

This is my XftConfig:

#
# XftConfig
#
# By: Danny Tholen
#
# Use with Type1 and TrueType fonts
#

dir "/usr/X11R6/lib/X11/fonts/Type1"
dir "/usr/X11R6/lib/X11/fonts/drakfont"
dir "/usr/share/fonts/default/Type1" 

#
# alias 'fixed' and 'console' for 'mono'
# (some programs ask for 'mono' if they mean 'fixed';)
#
match any family == "fixed"        edit family =+ "mono";
match any family == "console"      edit family =+ "mono";


#
#Check users config file
#
includeif     "~/.xftconfig"


#
# Use TrueType fonts for defaults
# Danny: disabled
#match any family == "serif"       edit family += "Times New Roman";
#match any family == "sans"        edit family += "Verdana";


#
# Use lucida console as default fixed type font
# and set the spacing of "mono" to 100, this
# fixes broken fonts which are fixed, but do not
# set mono-spacing.
match
      any family == "mono" 
edit
      family += "lucida console";
      spacing = 100;


#
# Alias between XLFD families and font file family name, prefer local fonts
#
match any family == "Charter"           edit family += "Bitstream Charter";
match any family == "Bitstream Charter" edit family =+ "Charter";

match any family == "Lucidux Serif"     edit family += "LuciduxSerif";
match any family == "LuciduxSerif"      edit family =+ "Lucidux Serif";

match any family == "Lucidux Sans"      edit family += "LuciduxSans";
match any family == "LuciduxSans"       edit family =+ "Lucidux Sans";

match any family == "Lucidux Mono"      edit family += "LuciduxMono";
match any family == "LuciduxMono"       edit family =+ "Lucidux Mono";


#
# TrueType font aliases
#
match any family == "Comic Sans"        edit family += "Comic Sans MS";
match any family == "Comic Sans MS"     edit family =+ "Comic Sans";
match any family == "Trebuchet"         edit family += "Trebuchet MS";
match any family == "Trebuchet MS"      edit family =+ "Trebuchet";
match any family == "Monotype"          edit family =+ "Monotype.com";
match any family == "Andale Mono"       edit family += "Monotype.com";
match any family == "Monotype.com"      edit family =+ "Andale Mono";


# Danny:
# set the AA for different fonts
#
# most TT fonts do not need to be aliased between
# 8 and 15 points, although this might be a matter of taste.
match 
      any size > 8
      any size < 15
edit
      antialias = false;


# Danny: Courier looks terrible, and I
# cannot get most characters to fit nicely
# in their space. So I use courier 10 pitch
match 
      any family == "courier" 
edit
      family += "courier 10 pitch";


# these are symbols, and for some reason this needs to be added!:

match 
      any family == "webdings" 
edit
      antialias = false;
      encoding += "glyphs-fontspecific";

match 
      any family == "symbol" 
edit
      antialias = false;
      encoding += "glyphs-fontspecific";

match 
      any family == "Standard Symbols L" 
edit
      antialias = false;
      encoding += "glyphs-fontspecific";

match 
      any family == "dingbats" 
edit
      antialias = false;
      encoding += "glyphs-fontspecific";

match 
      any family == "Cursor" 
edit
      antialias = false;
      encoding += "glyphs-fontspecific";


# maybe arial looks better like this?:
match 
      any family == "Arial" 
      any size > 7
      any size < 15
edit
      antialias = false;


# end
    

4.1.4. GTK and GNOME

As mentioned above, KDE and QT do have solid anti-aliasing support with recent releases. GNOME, however, does not support anti-aliasing natively in stable releases (as of Feb 2002). But it is under developement and will be available when 2.0 is released, which should not be far away. If you are adventurous, you might consider getting the current development snapshot, and play with that.

In the meantime, there is the gdkxft project available at http://sourceforge.net/projects/gdkxft/. This will add anti-aliasing support to GTK+ 1.2 applications. This is a stand-alone library and not a patch. It will only effect GTK+ widgets (many of them but not all). There are some limitations, but mostly it works as advertized. Read the included README closely. An initial installation provides a good starting point. I used some of Danny's suggestions above, and it seems to work mostly. Even with the latest Mozilla (widgets only AFAICT)! GNOME users will need to use the "gdkxft" supplied theme.

For RPM users, there is a spec file in the tarball, and an RPM can be built with "rpm -tb <tarball>.tgz". Then install the binary RPM that is produced from that.

4.2. Red Hat 7.x Differences

Red Hat 7.0 introduced some changes to X configuration over previous Red Hat versions. It is also different from the stock XFree86 configuration as addressed above. Notable differences: