The color blend mothed.
Enumerator |
---|
COLOR_BLEND_PD_SRC_OVER | Porter Duff rule: source over destination
|
COLOR_BLEND_PD_DST_OVER | Porter Duff rule: destination over source
|
COLOR_BLEND_PD_CLEAR | Porter Duff rule: clear
|
COLOR_BLEND_PD_SRC | Porter Duff rule: source
|
COLOR_BLEND_PD_DST | Porter Duff rule: destination
|
COLOR_BLEND_PD_SRC_IN | Porter Duff rule: souorce in destination
|
COLOR_BLEND_PD_DST_IN | Porter Duff rule: destination in souorce
|
COLOR_BLEND_PD_SRC_OUT | Porter Duff rule: source held out by destination
|
COLOR_BLEND_PD_DST_OUT | Porter Duff rule: destination held out by source
|
COLOR_BLEND_PD_SRC_ATOP | Porter Duff rule: source atop destination
|
COLOR_BLEND_PD_DST_ATOP | Porter Duff rule: destination atop source
|
COLOR_BLEND_PD_XOR | Porter Duff rule: source xor destination
|
COLOR_BLEND_PD_PLUS | Porter Duff rule: plus
|
COLOR_BLEND_PD_MODULATE | Porter Duff rule: modulate
|
COLOR_BLEND_SP_NORMAL | Separable blend mode: normal The blending formula simply selects the source color.
|
COLOR_BLEND_SP_MULTIPLY | Separable blend mode: multiply Darkens by multiplying colors: Sc·Dc.
|
COLOR_BLEND_SP_SCREEN | Separable blend mode: screen Complements product of complements: Sc + Dc - Sc·Dc.
|
COLOR_BLEND_SP_OVERLAY | Separable blend mode: overlay Inverse of hard-light.
|
COLOR_BLEND_SP_DARKEN | Separable blend mode: darken Minimum of colors: min(Sc, Dc).
|
COLOR_BLEND_SP_LIGHTEN | Separable blend mode: lighten Maximum of colors: max(Sc, Dc).
|
COLOR_BLEND_SP_COLOR_DODGE | Separable blend mode: color-dodge Brightens destination based on source.
|
COLOR_BLEND_SP_COLOR_BURN | Separable blend mode: color-burn Darkens destination based on source.
|
COLOR_BLEND_SP_HARD_LIGHT | Separable blend mode: hard-light Similar to effect of harsh spotlight.
|
COLOR_BLEND_SP_SOFT_LIGHT | Separable blend mode: soft-light Similar to effect of soft spotlight.
|
COLOR_BLEND_SP_DIFFERENCE | Separable blend mode: difference Subtracts the darker from the lighter: Abs(Dc - Sc).
|
COLOR_BLEND_SP_EXCLUSION | Separable blend mode: exclusion Similar to Difference but lower contrast.
|
COLOR_BLEND_NS_HUE | Non-Separable blend mode: hue Creates a color with the hue of the source color and the saturation and luminosity of the backdrop color.
|
COLOR_BLEND_NS_SATURATION | Non-Separable blend mode: saturation Creates a color with the saturation of the source color and the hue and luminosity of the backdrop color.
|
COLOR_BLEND_NS_COLOR | Non-Separable blend mode: color Creates a color with the hue and saturation of the source color and the luminosity of the backdrop color.
|
COLOR_BLEND_NS_LUMINOSITY | Non-Separable blend mode: luminosity Creates a color with the luminosity of the source color and the hue and saturation of the backdrop color.
|