Specifies how rendered colors are combined with background colors.
Namespace: RSGdiPlusGraphicsTypes
Delphi
|
type
TRSGPCompositingMode = (
cmSourceOver,
cmSourceCopy
);
|
|
Name
|
Description
|
|
cmSourceCopy
|
Specifies that when a color is rendered, it overwrites the background color. This mode cannot be used along with text rendering hint trhClearTypeGridFit.
|
|
cmSourceOver
|
Specifies that when a color is rendered, it is blended with the background color. The blend is determined by the alpha component of the color being rendered.
|
Top
|