Uses of Interface
com.itextpdf.kernel.pdf.canvas.parser.clipper.IClipper
-
Packages that use IClipper Package Description com.itextpdf.kernel.pdf.canvas.parser.clipper -
-
Uses of IClipper in com.itextpdf.kernel.pdf.canvas.parser.clipper
Classes in com.itextpdf.kernel.pdf.canvas.parser.clipper that implement IClipper Modifier and Type Class Description class
ClipperBase
class
DefaultClipper
Methods in com.itextpdf.kernel.pdf.canvas.parser.clipper with parameters of type IClipper Modifier and Type Method Description void
ClipperBridge. addPath(IClipper clipper, Path path, IClipper.PolyType polyType)
boolean
ClipperBridge. addPolygonToClipper(IClipper clipper, Point[] polyVertices, IClipper.PolyType polyType)
Adds polygon path based on array ofPoint
(internally converting them byClipperBridge.convertToLongPoints(java.util.List<com.itextpdf.kernel.geom.Point>)
) and adds this path toIClipper
instance, treating the path as a closed polygon.boolean
ClipperBridge. addPolylineSubjectToClipper(IClipper clipper, Point[] lineVertices)
Adds polyline path based on array ofPoint
(internally converting them byClipperBridge.convertToLongPoints(java.util.List<com.itextpdf.kernel.geom.Point>)
) and adds this path toIClipper
instance, treating the path as a polyline (an open path in terms of clipper library).
-