Class PathConstructionRenderInfo
java.lang.Object
com.itextpdf.text.pdf.parser.PathConstructionRenderInfo
Contains information relating to construction the current path.
- Since:
- 5.5.6
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intprivate Matrixstatic final intstatic final intstatic final intstatic final intstatic final intprivate intstatic final int -
Constructor Summary
ConstructorsConstructorDescriptionPathConstructionRenderInfo(int operation, Matrix ctm) PathConstructionRenderInfo(int operation, List<Float> segmentData, Matrix ctm) -
Method Summary
-
Field Details
-
MOVETO
-
LINETO
-
CURVE_123
public static final int CURVE_123- See Also:
-
CURVE_23
-
CURVE_13
-
CLOSE
-
RECT
-
operation
private int operation -
segmentData
-
ctm
-
-
Constructor Details
-
PathConstructionRenderInfo
- Parameters:
operation- Indicates which path-construction operation should be performed.segmentData- Contains data of a new segment being added to the current path. E.g. x, y, w, h for rectangle; x, y for line etc.ctm- Current transformation matrix.
-
PathConstructionRenderInfo
-
-
Method Details
-
getOperation
public int getOperation()- Returns:
- construction operation should be performed on the current path.
-
getSegmentData
-
getCtm
- Returns:
- Current transformation matrix.
-