FileDocCategorySizeDatePackage
ICC_ProfileGray.javaAPI DocAndroid 1.5 API2316Wed May 06 22:41:54 BST 2009java.awt.color

ICC_ProfileGray

public class ICC_ProfileGray extends ICC_Profile
The ICC_ProfileGray class represent profiles with TYPE_GRAY color space type, and includes the grayTRCTag and mediaWhitePointTag tags. The gray component can be transformed from a GRAY device profile color space to the CIEXYZ Profile through the tone reproduction curve (TRC):

PCSY = grayTRC[deviceGray]

since
Android 1.0

Fields Summary
private static final long
serialVersionUID
The Constant serialVersionUID.
Constructors Summary
ICC_ProfileGray(long profileHandle)
Instantiates a new iC c_ profile gray.

param
profileHandle the profile handle


                                 
      
        super(profileHandle);
    
Methods Summary
public floatgetGamma()
Gets a gamma value representing the tone reproduction curve (TRC).

return
the gamma value representing the tone reproduction curve (TRC).

        return super.getGamma(icSigGrayTRCTag);
    
public float[]getMediaWhitePoint()
Gets the media white point.

return
the media white point

        return super.getMediaWhitePoint();
    
public short[]getTRC()
Gets the TRC as an array of shorts.

return
the short array of the TRC.

        return super.getTRC(icSigGrayTRCTag);