Specifies the process used to render text. The process affects the quality of the text.
Namespace: RSGdiPlusGraphicsTypes
Delphi
|
type
TRSGPTextRenderingHint = (
trhSystemDefault,
trhSingleBitPerPixelGridFit,
trhSingleBitPerPixel,
trhAntiAliasGridFit,
trhAntiAlias,
trhClearTypeGridFit
);
|
|
Name
|
Description
|
|
trhAntiAlias
|
Specifies that a character is drawn using its antialiased glyph bitmap and no hinting. Stem width differences may be noticeable because hinting is turned off.
|
|
trhAntiAliasGridFit
|
Specifies that a character is drawn using its antialiased glyph bitmap and hinting. This results in much better quality due to antialiasing at a higher performance cost.
|
|
trhClearTypeGridFit
|
Specifies that a character is drawn using its glyph ClearType bitmap and hinting. This type of text rendering cannot be used along with Compositing Mode cmSourceCopy.
|
|
trhSingleBitPerPixel
|
Specifies that a character is drawn using its glyph bitmap and no hinting. This results in better performance at the expense of quality.
|
|
trhSingleBitPerPixelGridFit
|
Specifies that a character is drawn using its glyph bitmap and hinting to improve character appearance on stems and curvature.
|
|
trhSystemDefault
|
Specifies that a character is drawn using the currently selected system font smoothing mode (also called a rendering hint).
|
Top
|