public enum RenderIntent extends java.lang.Enum<RenderIntent>
| Enum Constant and Description |
|---|
ABS_COLORIMETRIC
Tries to maintain color accuracy at the expense of preserving relationships between colors.
|
PERCEPTUAL
Tries to preserve the visual relationship between colors in a way that is perceived as natural to the human eye, although the color values themselves may change.
|
REL_COLORIMETRIC
The same as absolute colorimetric, except that it compares the white point of the source color space to that of the destination color space and shifts all other colors accordingly, rather than comparing individual colors.
|
SATURATION
Tries to create vivid color at the expense of accurate color.
|
USE_GSTATE_INTENT
Use the source intent for the destination intent
|
USE_PROFILE_INTENT
Use the source profile's rendering intent.
|
| Modifier and Type | Method and Description |
|---|---|
static RenderIntent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RenderIntent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderIntent PERCEPTUAL
public static final RenderIntent REL_COLORIMETRIC
public static final RenderIntent SATURATION
public static final RenderIntent ABS_COLORIMETRIC
public static final RenderIntent USE_PROFILE_INTENT
public static final RenderIntent USE_GSTATE_INTENT
public static RenderIntent[] values()
for (RenderIntent c : RenderIntent.values()) System.out.println(c);
public static RenderIntent valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null