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

All Implemented Interfaces:
    java$io$Serializable

A subclass of the ICC_Profile class which represents profiles which meet the following criteria: the color space type of the profile is TYPE_GRAY and the profile includes the grayTRCTag and mediaWhitePointTag tags. Examples of this kind of profile are monochrome input profiles, monochrome display profiles, and monochrome output profiles. The getInstance methods in the ICC_Profile class will return an ICC_ProfileGray object when the above conditions are met. The advantage of this class is that it provides a lookup table that Java or native methods may be able to use directly to optimize color conversion in some cases.

To transform from a GRAY device profile color space to the CIEXYZ Profile Connection Space, the device gray component is transformed by a lookup through the tone reproduction curve (TRC). The result is treated as the achromatic component of the PCS.


                PCSY = grayTRC[deviceGray]

The inverse transform is done by converting the PCS Y components to device Gray via the inverse of the grayTRC.

Field Summary
static final  long serialVersionUID     
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_ProfileGray(long ID) 
 ICC_ProfileGray(ProfileDeferralInfo pdi) 
    Constructs a new ICC_ProfileGray from a ProfileDeferralInfo object.
Method from java.awt.color.ICC_ProfileGray Summary:
getGamma,   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_ProfileGray Detail:
 public float getGamma() 
    Returns a gamma value representing the tone reproduction curve (TRC). If the profile represents the TRC as a table rather than a single gamma value, then an exception is thrown. In this case the actual table can be obtained via getTRC(). When using a gamma value, the PCS Y component is computed as follows:
    
                              gamma
             PCSY = deviceGray
    
    
 public float[] getMediaWhitePoint() 
    Returns a float array of length 3 containing the X, Y, and Z components of the mediaWhitePointTag in the ICC profile.
 public short[] getTRC() 
    Returns the TRC as an array of shorts. If the profile has specified the TRC as linear (gamma = 1.0) or as a simple gamma value, this method throws an exception, and the getGamma() method should be used to get the gamma value. Otherwise the short array returned here represents a lookup table where the input Gray 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 may be used to generate output values for input values which 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, i.e. the values are really unsigned short values, although they are returned in a short array.