Uses of Class
com.itextpdf.kernel.geom.Path
-
Packages that use Path Package Description com.itextpdf.kernel.geom com.itextpdf.kernel.pdf.canvas.parser com.itextpdf.kernel.pdf.canvas.parser.clipper com.itextpdf.kernel.pdf.canvas.parser.data -
-
Uses of Path in com.itextpdf.kernel.geom
Methods in com.itextpdf.kernel.geom that return Path Modifier and Type Method Description static Path
ShapeTransformUtil. transformPath(Path path, Matrix ctm)
Method for transforming a path.Methods in com.itextpdf.kernel.geom with parameters of type Path Modifier and Type Method Description static Path
ShapeTransformUtil. transformPath(Path path, Matrix ctm)
Method for transforming a path.Constructors in com.itextpdf.kernel.geom with parameters of type Path Constructor Description Path(Path path)
-
Uses of Path in com.itextpdf.kernel.pdf.canvas.parser
Fields in com.itextpdf.kernel.pdf.canvas.parser declared as Path Modifier and Type Field Description private Path
ParserGraphicsState. clippingPath
protected Path
PdfCanvasProcessor. currentPath
Methods in com.itextpdf.kernel.pdf.canvas.parser that return Path Modifier and Type Method Description Path
ParserGraphicsState. getClippingPath()
Getter for the current clipping path.Methods in com.itextpdf.kernel.pdf.canvas.parser with parameters of type Path Modifier and Type Method Description void
ParserGraphicsState. clip(Path path, int fillingRule)
Intersects the current clipping path with the given path.void
ParserGraphicsState. setClippingPath(Path clippingPath)
Sets the current clipping path to the specified path. -
Uses of Path in com.itextpdf.kernel.pdf.canvas.parser.clipper
Methods in com.itextpdf.kernel.pdf.canvas.parser.clipper that return Path Modifier and Type Method Description Path
ClipperBridge. convertToPath(PolyTree result)
Methods in com.itextpdf.kernel.pdf.canvas.parser.clipper with parameters of type Path Modifier and Type Method Description (package private) void
ClipperBridge. addContour(Path path, java.util.List<Point.LongPoint> contour, boolean close)
java.util.List<Subpath>
ClipperBridge. addPath(ClipperOffset offset, Path path, IClipper.JoinType joinType, IClipper.EndType endType)
Adds all iTextSubpath
s of the iTextPath
to theClipperOffset
object with one note: it doesn't add degenerate subpaths.void
ClipperBridge. addPath(IClipper clipper, Path path, IClipper.PolyType polyType)
Constructors in com.itextpdf.kernel.pdf.canvas.parser.clipper with parameters of type Path Constructor Description ClipperBridge(Path... paths)
Creates newClipperBridge
instance with adjusted float multiplier value. -
Uses of Path in com.itextpdf.kernel.pdf.canvas.parser.data
Fields in com.itextpdf.kernel.pdf.canvas.parser.data declared as Path Modifier and Type Field Description private Path
ClippingPathInfo. path
private Path
PathRenderInfo. path
Methods in com.itextpdf.kernel.pdf.canvas.parser.data that return Path Modifier and Type Method Description Path
ClippingPathInfo. getClippingPath()
Gets thePath
which represents current clipping path.Path
PathRenderInfo. getPath()
Gets thePath
to be renderedConstructors in com.itextpdf.kernel.pdf.canvas.parser.data with parameters of type Path Constructor Description ClippingPathInfo(CanvasGraphicsState gs, Path path, Matrix ctm)
Creates a newClippingPathInfo
instance.PathRenderInfo(java.util.Stack<CanvasTag> canvasTagHierarchy, CanvasGraphicsState gs, Path path, int operation)
If the operation isPathRenderInfo.NO_OP
then the rule is ignored, otherwisePdfCanvasConstants.FillingRule.NONZERO_WINDING
is used by default.PathRenderInfo(java.util.Stack<CanvasTag> canvasTagHierarchy, CanvasGraphicsState gs, Path path, int operation, int rule, boolean isClip, int clipRule)
Creates the newPathRenderInfo
instance.
-