Uses of Class
com.lowagie.text.pdf.parser.Matrix
-
Packages that use Matrix Package Description com.lowagie.text.pdf.parser -
-
Uses of Matrix in com.lowagie.text.pdf.parser
Fields in com.lowagie.text.pdf.parser declared as Matrix Modifier and Type Field Description private Matrix
GraphicsState. ctm
The current transformation matrix.private Matrix
PdfContentStreamHandler. textLineMatrix
Text line matrix.private Matrix
PdfContentStreamHandler. textMatrix
Text matrix.private Matrix
ParsedText. textToUserSpaceTransformMatrix
Methods in com.lowagie.text.pdf.parser that return Matrix Modifier and Type Method Description Matrix
GraphicsState. getCtm()
Get the current transformation matrix.protected Matrix
PdfContentStreamHandler. getCurrentTextLineMatrix()
Returns the current line matrix.protected Matrix
PdfContentStreamHandler. getCurrentTextMatrix()
Returns the current text matrix.private static Matrix
PdfContentStreamHandler. getMatrix(java.util.List<PdfObject> operands)
Matrix
Matrix. multiply(Matrix by)
multiplies this matrix by 'b' and returns the result See http://en.wikipedia.org/wiki/Matrix_multiplicationMatrix
GraphicsState. multiplyCtm(Matrix matrix)
Multiply transformation matrix and get result.Matrix
Matrix. subtract(Matrix arg)
Subtracts a matrix from this matrix and returns the resultsMethods in com.lowagie.text.pdf.parser with parameters of type Matrix Modifier and Type Method Description private static float
ParsedText. convertHeightToUser(float height, Matrix textToUserSpaceTransformMatrix)
private static float
ParsedText. convertWidthToUser(float width, Matrix textToUserSpaceTransformMatrix)
Vector
Vector. cross(Matrix by)
Computes the cross product of this vector and the specified matrixMatrix
Matrix. multiply(Matrix by)
multiplies this matrix by 'b' and returns the result See http://en.wikipedia.org/wiki/Matrix_multiplicationMatrix
GraphicsState. multiplyCtm(Matrix matrix)
Multiply transformation matrix and get result.private static Vector
ParsedText. pointToUserSpace(float xOffset, float yOffset, Matrix textToUserSpaceTransformMatrix)
Matrix
Matrix. subtract(Matrix arg)
Subtracts a matrix from this matrix and returns the resultsConstructors in com.lowagie.text.pdf.parser with parameters of type Matrix Constructor Description ParsedText(PdfString text, GraphicsState graphicsState, Matrix textMatrix)
This constructor should only be called when the origin for text display is at (0,0) and the graphical state reflects all transformations of the baseline.ParsedText(PdfString text, GraphicsState graphicsState, Matrix textMatrix, float unscaledWidth)
Internal constructor for a parsed text item.
-