Home » pdfbox-1.1.0-src » org.apache.pdfbox.pdmodel.graphics.color » [javadoc | source]
org.apache.pdfbox.pdmodel.graphics.color
public class: PDGamma [javadoc | source]
java.lang.Object
   org.apache.pdfbox.pdmodel.graphics.color.PDGamma

All Implemented Interfaces:
    COSObjectable

A gamma array, or collection of three floating point parameters used for color operations.
Constructor:
 public PDGamma() 
 public PDGamma(COSArray array) 
    Constructor from COS object.
    Parameters:
    array - The array containing the XYZ values.
Method from org.apache.pdfbox.pdmodel.graphics.color.PDGamma Summary:
getB,   getCOSArray,   getCOSObject,   getG,   getR,   setB,   setG,   setR
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.pdfbox.pdmodel.graphics.color.PDGamma Detail:
 public float getB() 
    This will get the b value of the tristimulus.
 public COSArray getCOSArray() 
    Convert this standard java object to a COS object.
 public COSBase getCOSObject() 
    Convert this standard java object to a COS object.
 public float getG() 
    This will get the g value of the tristimulus.
 public float getR() 
    This will get the r value of the tristimulus.
 public  void setB(float b) 
    This will set the b value of the tristimulus.
 public  void setG(float g) 
    This will set the g value of the tristimulus.
 public  void setR(float r) 
    This will set the r value of the tristimulus.