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

All Implemented Interfaces:
    Cloneable, COSObjectable

This class will be used for matrix manipulation.
Constructor:
 public PDMatrix() 
 public PDMatrix(COSArray array) 
    Constructor.
    Parameters:
    array - The array that describes the matrix.
Method from org.apache.pdfbox.pdmodel.common.PDMatrix Summary:
getCOSArray,   getCOSObject,   getValue,   setValue
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.pdfbox.pdmodel.common.PDMatrix Detail:
 public COSArray getCOSArray() 
    This will get the underlying array value.
 public COSBase getCOSObject() 
    Convert this standard java object to a COS object.
 public float getValue(int row,
    int column) 
    This will get a matrix value at some point.
 public  void setValue(int row,
    int column,
    float value) 
    This will set a value at a position.