public enum RenderingIntent extends Enum<RenderingIntent>
枚举常量和说明 |
---|
ABSOLUTE_COLORIMETRIC
Absolute colorimetric rendering intent.
|
AUTO
Automatic rendering intent.
|
PERCEPTUAL
Perceptual rendering intent.
|
RELATIVE_COLORIMETRIC
Relative colorimetric rendering intent.
|
SATURATION
Saturation rendering intent.
|
限定符和类型 | 方法和说明 |
---|---|
static RenderingIntent |
fromICCValue(int value)
Returns the enum value for the given integer rendering intent (as defined by the ICC
specification).
|
int |
getIntegerValue()
Returns an integer value identifying the rendering intent.
|
static RenderingIntent |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static RenderingIntent[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final RenderingIntent PERCEPTUAL
public static final RenderingIntent RELATIVE_COLORIMETRIC
public static final RenderingIntent ABSOLUTE_COLORIMETRIC
public static final RenderingIntent SATURATION
public static final RenderingIntent AUTO
public static RenderingIntent[] values()
for (RenderingIntent c : RenderingIntent.values()) System.out.println(c);
public static RenderingIntent valueOf(String name)
name
- 要返回的枚举常量的名称。IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量NullPointerException
- 如果参数为空值public int getIntegerValue()
ICC_Profile
.ic*)public static RenderingIntent fromICCValue(int value)
value
- the rendering intent as ICC valueCopyright 1999-2016 The Apache Software Foundation. All Rights Reserved.