ColorManagementRenderingIntent Enumeration |
Specifies the ICC (International Color Consortium) rendering intent for use by ColorManagementEffect.
Namespace:
Microsoft.Graphics.Canvas.Effects
Assembly:
Microsoft.Graphics.Canvas (in Microsoft.Graphics.Canvas.dll) Version: 0.0.0.0
Syntax public enum ColorManagementRenderingIntent
Members
| Member name | Value | Description |
---|
| Perceptual | 0 |
The effect compresses or expands the full color gamut of the image to fill the color gamut
of the device, so that gray balance is preserved but colorimetric accuracy may not be
preserved.
|
| RelativeColorimetric | 1 |
The effect preserves the chroma of colors in the image at the possible expense of hue and
lightness.
|
| Saturation | 2 |
The effect adjusts colors that fall outside the range of colors the output device renders
to the closest color available. It does not preserve the white point.
|
| AbsoluteColorimetric | 3 |
The effect adjusts any colors that fall outside the range that the output device can render
to the closest color that can be rendered. The effect does not change the other colors and
preserves the white point.
|
See Also