Package | Description |
---|---|
com.aspose.imaging |
The package is the core for nested packages and the most basic objects used for Aspose.Imaging processing.
|
com.aspose.imaging.brushes |
The package provides helper classes and methods to work with different brush types.
|
com.aspose.imaging.fileformats.emf.graphics |
The package contains Emf/Emf+ graphics.
|
com.aspose.imaging.fileformats.svg.graphics |
The namespace for drawing on Svg.
|
com.aspose.imaging.fileformats.tiff.pathresources |
The namespace handles Tiff file format processing.
|
com.aspose.imaging.masking.options |
The namespace handles ImageMasking.Options processing.
|
Modifier and Type | Method and Description |
---|---|
GraphicsPath |
GraphicsPath.deepClone()
Performs a deep clone of this graphics path.
|
GraphicsPath |
CustomLineCap.getFillPath()
Gets the object that defines the fill for the custom cap.
|
GraphicsPath |
CustomLineCap.getStrokePath()
Gets the object that defines the outline of the custom cap.
|
Modifier and Type | Method and Description |
---|---|
void |
GraphicsPath.addPath(GraphicsPath addingPath)
Appends the specified
com.aspose.imaging.GraphicsPath to this path. |
void |
GraphicsPath.addPath(GraphicsPath addingPath,
boolean connect)
Appends the specified
com.aspose.imaging.GraphicsPath to this path. |
void |
Region.complement(GraphicsPath path)
Updates this
com.aspose.imaging.Region to contain the portion of the specified com.aspose.imaging.GraphicsPath that does not intersect with this com.aspose.imaging.region . |
void |
Graphics.drawPath(Pen pen,
GraphicsPath path)
Draws a
com.aspose.imaging.graphicsPath . |
void |
Region.exclude(GraphicsPath path)
Updates this
com.aspose.imaging.Region to contain only the portion of its interior that does not intersect with the specified com.aspose.imaging.graphicsPath . |
void |
Graphics.fillPath(Brush brush,
GraphicsPath path)
Fills the interior of a
com.aspose.imaging.graphicsPath . |
void |
Region.intersect(GraphicsPath path)
Updates this
com.aspose.imaging.Region to the intersection of itself with the specified com.aspose.imaging.graphicsPath . |
void |
CustomLineCap.setFillPath(GraphicsPath value)
Sets the object that defines the fill for the custom cap.
|
void |
CustomLineCap.setStrokePath(GraphicsPath value)
Sets the object that defines the outline of the custom cap.
|
void |
Region.union(GraphicsPath path)
Updates this
com.aspose.imaging.Region to the union of itself and the specified com.aspose.imaging.graphicsPath . |
void |
Region.xor(GraphicsPath path)
Updates this
com.aspose.imaging.Region to the union minus the intersection of itself with the specified com.aspose.imaging.graphicsPath . |
Constructor and Description |
---|
CustomLineCap(GraphicsPath fillPath,
GraphicsPath strokePath)
Initializes a new instance of the
CustomLineCap class with the specified outline and fill. |
CustomLineCap(GraphicsPath fillPath,
GraphicsPath strokePath,
int baseCap)
Initializes a new instance of the
CustomLineCap class from the specified existing LineCap enumeration with the specified outline and fill. |
CustomLineCap(GraphicsPath fillPath,
GraphicsPath strokePath,
int baseCap,
float baseInset)
Initializes a new instance of the
CustomLineCap class from the specified existing LineCap enumeration with the specified outline, fill, and inset. |
Region(GraphicsPath path)
Initializes a new
T:Aspose.Imaging.Region with the specified T:Aspose.Imaging.GraphicsPath . |
Modifier and Type | Method and Description |
---|---|
GraphicsPath |
PathGradientBrushBase.getGraphicsPath()
Gets the graphics path this brush was build upon.
|
Constructor and Description |
---|
PathGradientBrush(GraphicsPath path)
Initializes a new instance of the
PathGradientBrush class with the specified path. |
PathMulticolorGradientBrush(GraphicsPath path)
Initializes a new instance of the
PathMulticolorGradientBrush class with the specified path. |
Modifier and Type | Method and Description |
---|---|
void |
MetafileRecorderGraphics2D.drawPath(Pen pen,
GraphicsPath path)
Draws the path.
|
void |
MetafileRecorderGraphics2D.fillPath(Pen pen,
Brush brush,
GraphicsPath path)
Fills the path.
|
Modifier and Type | Method and Description |
---|---|
void |
SvgGraphics2D.drawPath(Pen pen,
GraphicsPath path)
Draws the path.
|
void |
SvgGraphics2D.fillPath(Pen pen,
Brush brush,
GraphicsPath path)
Fills the path.
|
Modifier and Type | Method and Description |
---|---|
static GraphicsPath |
PathResourceConverter.toGraphicsPath(PathResource[] pathResources,
Size imageSize)
Converts path resources to the
GraphicsPath instance. |
Modifier and Type | Method and Description |
---|---|
static PathResource[] |
PathResourceConverter.fromGraphicsPath(GraphicsPath graphicsPath,
Size imageSize)
Converts the
GraphicsPath instance to path resources. |
Modifier and Type | Method and Description |
---|---|
GraphicsPath |
ManualMaskingArgs.getMask()
Gets the set of graphic shapes that form mask.
|
Modifier and Type | Method and Description |
---|---|
void |
ManualMaskingArgs.setMask(GraphicsPath value)
Sets the set of graphic shapes that form mask.
|