Uses of Class
com.itextpdf.kernel.geom.Matrix
-
Packages that use Matrix Package Description com.itextpdf.kernel.geom com.itextpdf.kernel.pdf.canvas com.itextpdf.kernel.pdf.canvas.parser com.itextpdf.kernel.pdf.canvas.parser.data -
-
Uses of Matrix in com.itextpdf.kernel.geom
Methods in com.itextpdf.kernel.geom that return Matrix Modifier and Type Method Description MatrixMatrix. add(Matrix arg)Adds a matrix from this matrix and returns the results.MatrixMatrix. multiply(Matrix by)multiplies this matrix by 'b' and returns the result.MatrixMatrix. subtract(Matrix arg)Subtracts a matrix from this matrix and returns the results.Methods in com.itextpdf.kernel.geom with parameters of type Matrix Modifier and Type Method Description MatrixMatrix. add(Matrix arg)Adds a matrix from this matrix and returns the results.VectorVector. cross(Matrix by)Computes the cross product of this vector and the specified matrixMatrixMatrix. multiply(Matrix by)multiplies this matrix by 'b' and returns the result.MatrixMatrix. subtract(Matrix arg)Subtracts a matrix from this matrix and returns the results.static BezierCurveShapeTransformUtil. transformBezierCurve(BezierCurve bezierCurve, Matrix ctm)Method for transforming a bezier curve.LineSegmentLineSegment. transformBy(Matrix m)Transforms the segment by the specified matrixstatic LineShapeTransformUtil. transformLine(Line line, Matrix ctm)Method for transforming a line.static PathShapeTransformUtil. transformPath(Path path, Matrix ctm)Method for transforming a path.private static Point[]ShapeTransformUtil. transformPoints(Matrix ctm, Point... points)private static IShapeShapeTransformUtil. transformSegment(IShape segment, Matrix ctm)private static SubpathShapeTransformUtil. transformSubpath(Subpath subpath, Matrix ctm) -
Uses of Matrix in com.itextpdf.kernel.pdf.canvas
Fields in com.itextpdf.kernel.pdf.canvas declared as Matrix Modifier and Type Field Description private MatrixCanvasGraphicsState. ctmThe current transformation matrix, which maps positions from user coordinates to device coordinates.Methods in com.itextpdf.kernel.pdf.canvas that return Matrix Modifier and Type Method Description MatrixCanvasGraphicsState. getCtm()Methods in com.itextpdf.kernel.pdf.canvas with parameters of type Matrix Modifier and Type Method Description voidCanvasGraphicsState. updateCtm(Matrix newCtm)Updates current transformation matrix. -
Uses of Matrix in com.itextpdf.kernel.pdf.canvas.parser
Fields in com.itextpdf.kernel.pdf.canvas.parser declared as Matrix Modifier and Type Field Description private MatrixPdfCanvasProcessor. textLineMatrixprivate MatrixPdfCanvasProcessor. textMatrixMethods in com.itextpdf.kernel.pdf.canvas.parser with parameters of type Matrix Modifier and Type Method Description private voidParserGraphicsState. transformClippingPath(Matrix newCtm)voidParserGraphicsState. updateCtm(Matrix newCtm) -
Uses of Matrix in com.itextpdf.kernel.pdf.canvas.parser.data
Fields in com.itextpdf.kernel.pdf.canvas.parser.data declared as Matrix Modifier and Type Field Description private MatrixClippingPathInfo. ctmprivate MatrixImageRenderInfo. ctmThe coordinate transformation matrix that was in effect when the image was rendered.private MatrixTextRenderInfo. textMatrixprivate MatrixTextRenderInfo. textToUserSpaceTransformMatrixMethods in com.itextpdf.kernel.pdf.canvas.parser.data that return Matrix Modifier and Type Method Description MatrixClippingPathInfo. getCtm()Gets the currenttransformation matrix.MatrixPathRenderInfo. getCtm()Gets the current transformation matrix.MatrixImageRenderInfo. getImageCtm()Gets the coordinate transformation matrix in User space which was active when this image was rendered.MatrixTextRenderInfo. getTextMatrix()Gets original Text matrix.Constructors in com.itextpdf.kernel.pdf.canvas.parser.data with parameters of type Matrix Constructor Description ClippingPathInfo(CanvasGraphicsState gs, Path path, Matrix ctm)Creates a newClippingPathInfoinstance.ImageRenderInfo(java.util.Stack<CanvasTag> canvasTagHierarchy, CanvasGraphicsState gs, Matrix ctm, PdfStream imageStream, PdfName resourceName, PdfDictionary colorSpaceDictionary, boolean isInline)Creates an ImageRenderInfo.TextRenderInfo(PdfString str, CanvasGraphicsState gs, Matrix textMatrix, java.util.Stack<CanvasTag> canvasTagHierarchy)Creates a new TextRenderInfo object
-