Specifies the type of smoothing (antialiasing) that is applied to lines and curves.
Namespace: RSGdiPlusGraphicsTypes
Delphi
|
type
TRSGPSmoothingMode = (
smInvalid = -1,
smDefault = 0,
smHighSpeed,
smHighQuality,
smNone,
smAntiAlias8x4,
smAntiAlias = smAntiAlias8x4,
smAntiAlias8x8
);
|
|
Name
|
Description
|
|
smAntiAlias
|
Specifies that smoothing is applied using an 8 X 4 box filter.
|
|
smAntiAlias8x4
|
Specifies that smoothing is applied using an 8 X 4 box filter.
|
|
smAntiAlias8x8
|
Specifies that smoothing is applied using an 8 X 8 box filter.
|
|
smDefault
|
Specifies that smoothing is not applied.
|
|
smHighQuality
|
Specifies that smoothing is applied using an 8 X 4 box filter.
|
|
smHighSpeed
|
Specifies that smoothing is not applied.
|
|
smInvalid
|
Represents constant smInvalid.
|
|
smNone
|
Specifies that smoothing is not applied.
|
Top
|
Smoothing performed by an 8 X 4 box filter gives better results for nearly vertical lines than it does for nearly horizontal lines. Smoothing performed by an 8 X 8 box filter gives equally good results for nearly vertical and nearly horizontal lines. The 8x8 algorithm produces higher quality smoothing but is slower than the 8 X 4 algorithm.
|