public enum ColorProfile extends java.lang.Enum<ColorProfile>
| Enum Constant and Description |
|---|
ACROBAT_5_CMYK
Acrobat 5 CMYK
|
ACROBAT_9_CMYK
Acrobat 9 CMYK
|
ADOBE_RGB_1998
A wider gamut RGB space recommended by Adobe.
|
APPLE_RGB
Default RGB space using by Photoshop 4.0 and earlier.
|
COLOR_MATCH_RGB
A simplified version of Radius' ColorMatch RGB space, without Radius' non-zero black point.
|
DOT_GAIN_10
Grayscale printer profile with a dot gain of 10.
|
DOT_GAIN_15
Grayscale printer profile with a dot gain of 15.
|
DOT_GAIN_20
Grayscale printer profile with a dot gain of 20.
|
DOT_GAIN_25
Grayscale printer profile with a dot gain of 25.
|
DOT_GAIN_30
Grayscale printer profile with a dot gain of 30
|
FLAT_XYZ
An XYZ profile with a flat white point encoding (X = Y = Z = 1.0).
|
GAMMA_18
Grayscale display profile with a gamma of 1.8.
|
GAMMA_22
Grayscale display profile with a gamma of 2.2.
|
LAB_D_50
Adobe's standard Lab profile.
|
MONITOR_RGB
The system "Monitor RGB" profile.
|
NULL_COLOR_PROFILE
A NULL result, indication that a profile is not a built-in profile.
|
PCS_XYZ
An XYZ profile that exactly matches the ICC's XYZ PCS space.
|
SRGB
HP's sRGB profile.
|
SYSTEM_CMYK
The macOS ColorSync system default profiles for CMYK color space.
|
SYSTEM_GRAY
The macOS ColorSync system default profiles for Gray color space.
|
SYSTEM_INPUT
The macOS ColorSync system default profiles for input device type.
|
SYSTEM_OUTPUT
The macOS ColorSync system default profiles for output device type.
|
SYSTEM_PROOFER
The macOS ColorSync system default profiles for proofer device type.
|
SYSTEM_RGB
The macOS ColorSync system default profile for RGB color space.
|
WORKING_CMYK
The application working (CMYK) color space profile.)
|
WORKING_GRAY
The application working (Gray) color space profile.
|
WORKING_RGB
The application working (RGB) color space profile.
|
| Modifier and Type | Method and Description |
|---|---|
static ColorProfile |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColorProfile[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColorProfile NULL_COLOR_PROFILE
public static final ColorProfile LAB_D_50
public static final ColorProfile PCS_XYZ
public static final ColorProfile FLAT_XYZ
public static final ColorProfile SRGB
public static final ColorProfile APPLE_RGB
public static final ColorProfile ADOBE_RGB_1998
public static final ColorProfile COLOR_MATCH_RGB
public static final ColorProfile GAMMA_18
public static final ColorProfile GAMMA_22
public static final ColorProfile DOT_GAIN_10
public static final ColorProfile DOT_GAIN_15
public static final ColorProfile DOT_GAIN_20
public static final ColorProfile DOT_GAIN_25
public static final ColorProfile DOT_GAIN_30
public static final ColorProfile MONITOR_RGB
public static final ColorProfile SYSTEM_RGB
public static final ColorProfile SYSTEM_CMYK
public static final ColorProfile SYSTEM_GRAY
public static final ColorProfile SYSTEM_INPUT
public static final ColorProfile SYSTEM_OUTPUT
public static final ColorProfile SYSTEM_PROOFER
public static final ColorProfile WORKING_RGB
public static final ColorProfile WORKING_CMYK
public static final ColorProfile WORKING_GRAY
public static final ColorProfile ACROBAT_5_CMYK
public static final ColorProfile ACROBAT_9_CMYK
public static ColorProfile[] values()
for (ColorProfile c : ColorProfile.values()) System.out.println(c);
public static ColorProfile 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