|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.itextpdf.text.pdf.parser.PathConstructionRenderInfo
public class PathConstructionRenderInfo
Contains information relating to construction the current path.
Field Summary | |
---|---|
static int |
CLOSE
See Path.closeSubpath() |
static int |
CURVE_123
See Path.curveTo(float, float, float, float, float, float) |
static int |
CURVE_13
See Path.curveFromTo(float, float, float, float) |
static int |
CURVE_23
See Path.curveTo(float, float, float, float) |
static int |
LINETO
See Path.lineTo(float, float) |
static int |
MOVETO
See Path.moveTo(float, float) |
static int |
RECT
See Path.rectangle(float, float, float, float) |
Constructor Summary | |
---|---|
PathConstructionRenderInfo(int operation,
List<Float> segmentData,
Matrix ctm)
|
|
PathConstructionRenderInfo(int operation,
Matrix ctm)
See PathConstructionRenderInfo(int, java.util.List, Matrix) |
Method Summary | |
---|---|
Matrix |
getCtm()
|
int |
getOperation()
|
List<Float> |
getSegmentData()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int MOVETO
Path.moveTo(float, float)
public static final int LINETO
Path.lineTo(float, float)
public static final int CURVE_123
Path.curveTo(float, float, float, float, float, float)
public static final int CURVE_23
Path.curveTo(float, float, float, float)
public static final int CURVE_13
Path.curveFromTo(float, float, float, float)
public static final int CLOSE
Path.closeSubpath()
public static final int RECT
Path.rectangle(float, float, float, float)
Constructor Detail |
---|
public PathConstructionRenderInfo(int operation, List<Float> segmentData, Matrix ctm)
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.public PathConstructionRenderInfo(int operation, Matrix ctm)
PathConstructionRenderInfo(int, java.util.List, Matrix)
Method Detail |
---|
public int getOperation()
public List<Float> getSegmentData()
List
containing data of a new segment (E.g. x, y, w, h for rectangle;
x, y for line etc.) if the specified operation relates to adding the segment to the
current path, null
otherwise.public Matrix getCtm()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |