Uses of Class
java.awt.color.ICC_Profile
Package
Description
Provides classes for color spaces.
Provides classes for creating and modifying images.
-
Uses of ICC_Profile in java.awt.color
Modifier and TypeClassDescriptionclass
TheICC_ProfileGray
class is a subclass of theICC_Profile
class that represents profiles which meet the following criteria: the color space type of the profile isTYPE_GRAY
and the profile includes thegrayTRCTag
andmediaWhitePointTag
tags.class
TheICC_ProfileRGB
class is a subclass of theICC_Profile
class that represents profiles which meet the following criteria: the profile's color space type is RGB, and the profile includes theredColorantTag
,greenColorantTag
,blueColorantTag
,redTRCTag
,greenTRCTag
,blueTRCTag
,mediaWhitePointTag
tags.Modifier and TypeMethodDescriptionstatic ICC_Profile
ICC_Profile.getInstance
(byte[] data) Constructs anICC_Profile
object corresponding to the data in a byte array.static ICC_Profile
ICC_Profile.getInstance
(int cspace) Constructs anICC_Profile
corresponding to one of the specific color spaces defined by theColorSpace
class (for exampleCS_sRGB
).static ICC_Profile
ICC_Profile.getInstance
(InputStream s) Constructs anICC_Profile
corresponding to the data in anInputStream
.static ICC_Profile
ICC_Profile.getInstance
(String fileName) Constructs anICC_Profile
corresponding to the data in a file.ICC_ColorSpace.getProfile()
Returns theICC_Profile
for thisICC_ColorSpace
.ModifierConstructorDescriptionICC_ColorSpace
(ICC_Profile profile) Constructs a newICC_ColorSpace
from anICC_Profile
object. -
Uses of ICC_Profile in java.awt.image
Modifier and TypeMethodDescriptionfinal ICC_Profile[]
ColorConvertOp.getICC_Profiles()
Returns the array of ICC_Profiles used to construct this ColorConvertOp.ModifierConstructorDescriptionColorConvertOp
(ICC_Profile[] profiles, RenderingHints hints) Constructs a new ColorConvertOp from an array of ICC_Profiles.