Share via


Enabling Antialiased Fonts (Windows CE 5.0)

Send Feedback

You can enable antialiased fonts as the default if your display driver supports such fonts. Windows CE uses antialiased fonts by default if you add the HKEY_LOCAL_MACHINE\System\GDI\Fontsmoothing registry key.

If this key is**present, and you do not want your application to get an antialiased font, you must specify NONANTIALIASED_QUALITY in the lfQuality member of the LOGFONT structure for your application.

If this key is not**present, and you want your application to retrieve an antialiased font, you must specify ANTIALIASED_QUALITY in the lfQuality member of the LOGFONT structure for your application.

Add the ForceGRAY16 value to the HKEY_LOCAL_MACHINE\System\GDI registry key to allow or disallow the TrueType font renderer to use 4-bit antialiasing for font sizes that do not support 4-bit antialiasing. Setting this value to 1 will enable the antialiasing in the TrueType font renderer, and setting it to 0 will disable the antialiasing in the TrueType font renderer.

Add the ExpensiveAntialias value to the HKEY_LOCAL_MACHINE\System\GDI registry key to use an alternative antialiasing algorithm in the GPE Emul library. Setting this value to 1 will enable the use of an antialiasing algorithm, and setting it to zero (0) will disable the use of an alternate antialiasing algorithm. Any display driver using the Emul library can thus take advantage of two possible antialiasing algorithms.

The following code example shows the ForceGRAY16 and ExpensiveAntialias registry values set to 1.

[HKEY_LOCAL_MACHINE\System\GDI]
    "ForceGRAY16"=dword:1
    "ExpensiveAntialias"=dword:1

See Also

Fonts Overview | Fonts OS Design Development

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.