Uses of Class
org.pdfbox.util.Matrix

Packages that use Matrix
org.pdfbox.pdmodel.graphics The PDModel graphics package deals with graphics states, operations, and parameters within the PDF document. 
org.pdfbox.util This package contains utility classes that are used by the PDFBox project. 
 

Uses of Matrix in org.pdfbox.pdmodel.graphics
 

Methods in org.pdfbox.pdmodel.graphics that return Matrix
 Matrix PDGraphicsState.getCurrentTransformationMatrix()
          Get the value of the CTM.
 

Methods in org.pdfbox.pdmodel.graphics with parameters of type Matrix
 void PDGraphicsState.setCurrentTransformationMatrix(Matrix value)
          Set the value of the CTM.
 

Uses of Matrix in org.pdfbox.util
 

Methods in org.pdfbox.util that return Matrix
 Matrix PDFStreamEngine.getTextLineMatrix()
           
 Matrix PDFStreamEngine.getTextMatrix()
           
 Matrix Matrix.multiply(Matrix b)
          This will take the current matrix and multipy it with a matrix that is passed in.
 Matrix Matrix.extractScaling()
          Create a new matrix with just the scaling operators.
static Matrix Matrix.getScaleInstance(float x, float y)
          Convenience method to create a scaled instance.
 Matrix Matrix.extractTranslating()
          Create a new matrix with just the translating operators.
static Matrix Matrix.getTranslatingInstance(float x, float y)
          Convenience method to create a translating instance.
 Matrix Matrix.copy()
          This will copy the text matrix data.
 

Methods in org.pdfbox.util with parameters of type Matrix
 void PDFStreamEngine.setTextLineMatrix(Matrix value)
           
 void PDFStreamEngine.setTextMatrix(Matrix value)
           
 Matrix Matrix.multiply(Matrix b)
          This will take the current matrix and multipy it with a matrix that is passed in.