Uses of Class
java.awt.color.ICC_Profile
-
Packages that use ICC_Profile 软件包 描述 java.awt.color 提供颜色空间的类。java.awt.image 提供用于创建和修改图像的类。 -
-
Uses of ICC_Profile in java.awt.color
Subclasses of ICC_Profile in java.awt.color 变量和类型 类 描述 class
ICC_ProfileGray
ICC_Profile类的子类,表示符合以下条件的配置文件:配置文件的颜色空间类型为TYPE_GRAY,配置文件包含grayTRCTag和mediaWhitePointTag标记。class
ICC_ProfileRGB
ICC_ProfileRGB类是ICC_Profile类的子类,表示符合以下条件的配置文件:配置文件的颜色空间类型为RGB。 该配置文件包含redColorantTag
,greenColorantTag
,blueColorantTag
,redTRCTag
,greenTRCTag
,blueTRCTag
和mediaWhitePointTag
标签。 当满足这些条件时,ICC_Profile getInstance
方法将返回ICC_ProfileRGB
对象。Methods in java.awt.color that return ICC_Profile 变量和类型 方法 描述 static ICC_Profile
ICC_Profile. getInstance(byte[] data)
构造与字节数组中的数据对应的ICC_Profile对象。static ICC_Profile
ICC_Profile. getInstance(int cspace)
构造一个对应于ColorSpace类定义的特定颜色空间之一的ICC_Profile(例如CS_sRGB)。static ICC_Profile
ICC_Profile. getInstance(InputStream s)
构造与InputStream中的数据对应的ICC_Profile。static ICC_Profile
ICC_Profile. getInstance(String fileName)
构造与文件中的数据对应的ICC_Profile。ICC_Profile
ICC_ColorSpace. getProfile()
返回此ICC_ColorSpace的ICC_Profile。Constructors in java.awt.color with parameters of type ICC_Profile 构造器 描述 ICC_ColorSpace(ICC_Profile profile)
从ICC_Profile对象构造一个新的ICC_ColorSpace。 -
Uses of ICC_Profile in java.awt.image
Methods in java.awt.image that return ICC_Profile 变量和类型 方法 描述 ICC_Profile[]
ColorConvertOp. getICC_Profiles()
返回用于构造此ColorConvertOp的ICC_Profiles数组。Constructors in java.awt.image with parameters of type ICC_Profile 构造器 描述 ColorConvertOp(ICC_Profile[] profiles, RenderingHints hints)
从ICC_Profiles数组构造一个新的ColorConvertOp。
-