Save This Page
Home » openjdk-7 » java » awt » color » [javadoc | source]
java.awt.color
public class: ICC_ProfileRGB [javadoc | source]
java.lang.Object
   java.awt.color.ICC_Profile
      java.awt.color.ICC_ProfileRGB

All Implemented Interfaces:
    Serializable

The ICC_ProfileRGB class is a subclass of the ICC_Profile class that represents profiles which meet the following criteria: The ICC_Profile getInstance method will return an ICC_ProfileRGB object when these conditions are met. Three-component, matrix-based input profiles and RGB display profiles are examples of this type of profile.

This profile class provides color transform matrices and lookup tables that Java or native methods can use directly to optimize color conversion in some cases.

To transform from a device profile color space to the CIEXYZ Profile Connection Space, each device color component is first linearized by a lookup through the corresponding tone reproduction curve (TRC). The resulting linear RGB components are converted to the CIEXYZ PCS using a a 3x3 matrix constructed from the RGB colorants.


  linearR = redTRC[deviceR]

  linearG = greenTRC[deviceG]

  linearB = blueTRC[deviceB]

  _ _ _ _ _ _
 [ PCSX ] [ redColorantX greenColorantX blueColorantX ] [ linearR ]
 [ ] [ ] [ ]
 [ PCSY ] = [ redColorantY greenColorantY blueColorantY ] [ linearG ]
 [ ] [ ] [ ]
 [_ PCSZ _] [_ redColorantZ greenColorantZ blueColorantZ _] [_ linearB _]

The inverse transform is performed by converting PCS XYZ components to linear RGB components through the inverse of the above 3x3 matrix, and then converting linear RGB to device RGB through inverses of the TRCs.

Field Summary
static final  long serialVersionUID     
public static final  int REDCOMPONENT    Used to get a gamma value or TRC for the red component. 
public static final  int GREENCOMPONENT    Used to get a gamma value or TRC for the green component. 
public static final  int BLUECOMPONENT    Used to get a gamma value or TRC for the blue component. 
Fields inherited from java.awt.color.ICC_Profile:
ID,  CLASS_INPUT,  CLASS_DISPLAY,  CLASS_OUTPUT,  CLASS_DEVICELINK,  CLASS_COLORSPACECONVERSION,  CLASS_ABSTRACT,  CLASS_NAMEDCOLOR,  icSigXYZData,  icSigLabData,  icSigLuvData,  icSigYCbCrData,  icSigYxyData,  icSigRgbData,  icSigGrayData,  icSigHsvData,  icSigHlsData,  icSigCmykData,  icSigCmyData,  icSigSpace2CLR,  icSigSpace3CLR,  icSigSpace4CLR,  icSigSpace5CLR,  icSigSpace6CLR,  icSigSpace7CLR,  icSigSpace8CLR,  icSigSpace9CLR,  icSigSpaceACLR,  icSigSpaceBCLR,  icSigSpaceCCLR,  icSigSpaceDCLR,  icSigSpaceECLR,  icSigSpaceFCLR,  icSigInputClass,  icSigDisplayClass,  icSigOutputClass,  icSigLinkClass,  icSigAbstractClass,  icSigColorSpaceClass,  icSigNamedColorClass,  icPerceptual,  icRelativeColorimetric,  icMediaRelativeColorimetric,  icSaturation,  icAbsoluteColorimetric,  icICCAbsoluteColorimetric,  icSigHead,  icSigAToB0Tag,  icSigAToB1Tag,  icSigAToB2Tag,  icSigBlueColorantTag,  icSigBlueMatrixColumnTag,  icSigBlueTRCTag,  icSigBToA0Tag,  icSigBToA1Tag,  icSigBToA2Tag,  icSigCalibrationDateTimeTag,  icSigCharTargetTag,  icSigCopyrightTag,  icSigCrdInfoTag,  icSigDeviceMfgDescTag,  icSigDeviceModelDescTag,  icSigDeviceSettingsTag,  icSigGamutTag,  icSigGrayTRCTag,  icSigGreenColorantTag,  icSigGreenMatrixColumnTag,  icSigGreenTRCTag,  icSigLuminanceTag,  icSigMeasurementTag,  icSigMediaBlackPointTag,  icSigMediaWhitePointTag,  icSigNamedColor2Tag,  icSigOutputResponseTag,  icSigPreview0Tag,  icSigPreview1Tag,  icSigPreview2Tag,  icSigProfileDescriptionTag,  icSigProfileSequenceDescTag,  icSigPs2CRD0Tag,  icSigPs2CRD1Tag,  icSigPs2CRD2Tag,  icSigPs2CRD3Tag,  icSigPs2CSATag,  icSigPs2RenderingIntentTag,  icSigRedColorantTag,  icSigRedMatrixColumnTag,  icSigRedTRCTag,  icSigScreeningDescTag,  icSigScreeningTag,  icSigTechnologyTag,  icSigUcrBgTag,  icSigViewingCondDescTag,  icSigViewingConditionsTag,  icSigChromaticityTag,  icSigChromaticAdaptationTag,  icSigColorantOrderTag,  icSigColorantTableTag,  icHdrSize,  icHdrCmmId,  icHdrVersion,  icHdrDeviceClass,  icHdrColorSpace,  icHdrPcs,  icHdrDate,  icHdrMagic,  icHdrPlatform,  icHdrFlags,  icHdrManufacturer,  icHdrModel,  icHdrAttributes,  icHdrRenderingIntent,  icHdrIlluminant,  icHdrCreator,  icHdrProfileID,  icTagType,  icTagReserved,  icCurveCount,  icCurveData,  icXYZNumberX
Constructor:
 ICC_ProfileRGB(long ID) 
 ICC_ProfileRGB(ProfileDeferralInfo pdi) 
    Constructs a new ICC_ProfileRGB from a ProfileDeferralInfo object.
    Parameters:
    pdi -
Method from java.awt.color.ICC_ProfileRGB Summary:
getGamma,   getMatrix,   getMediaWhitePoint,   getTRC
Methods from java.awt.color.ICC_Profile:
activateDeferredProfile,   finalize,   getColorSpaceType,   getColorSpaceType,   getData,   getData,   getData,   getDeferredInstance,   getGamma,   getInstance,   getInstance,   getInstance,   getInstance,   getMajorVersion,   getMediaWhitePoint,   getMinorVersion,   getNumComponents,   getPCSType,   getPCSType,   getProfileClass,   getProfileDataFromStream,   getRenderingIntent,   getTRC,   getXYZTag,   iccCStoJCS,   intFromBigEndian,   intToBigEndian,   readResolve,   setData,   setRenderingIntent,   shortFromBigEndian,   shortToBigEndian,   write,   write
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from java.awt.color.ICC_ProfileRGB Detail:
 public float getGamma(int component) 
    Returns a gamma value representing the tone reproduction curve (TRC) for a particular component. The component parameter must be one of REDCOMPONENT, GREENCOMPONENT, or BLUECOMPONENT.

    If the profile represents the TRC for the corresponding component as a table rather than a single gamma value, an exception is thrown. In this case the actual table can be obtained through the #getTRC(int) method. When using a gamma value, the linear component (R, G, or B) is computed as follows:

    
      gamma
      linearComponent = deviceComponent
    
    
 public float[][] getMatrix() 
    Returns a 3x3 float matrix constructed from the X, Y, and Z components of the profile's redColorantTag, greenColorantTag, and blueColorantTag.

    This matrix can be used for color transforms in the forward direction of the profile--from the profile color space to the CIEXYZ PCS.

 public float[] getMediaWhitePoint() 
    Returns an array that contains the components of the profile's mediaWhitePointTag.
 public short[] getTRC(int component) 
    Returns the TRC for a particular component as an array. Component must be REDCOMPONENT, GREENCOMPONENT, or BLUECOMPONENT. Otherwise the returned array represents a lookup table where the input component value is conceptually in the range [0.0, 1.0]. Value 0.0 maps to array index 0 and value 1.0 maps to array index length-1. Interpolation might be used to generate output values for input values that do not map exactly to an index in the array. Output values also map linearly to the range [0.0, 1.0]. Value 0.0 is represented by an array value of 0x0000 and value 1.0 by 0xFFFF. In other words, the values are really unsigned short values even though they are returned in a short array. If the profile has specified the corresponding TRC as linear (gamma = 1.0) or as a simple gamma value, this method throws an exception. In this case, the #getGamma(int) method should be used to get the gamma value.