GraphicsPath

Inheritance: java.lang.Object, com.aspose.psd.ObjectWithBounds

public final class GraphicsPath extends ObjectWithBounds

Represents a series of connected lines and curves. This class cannot be inherited.

Constructors

ConstructorDescription
GraphicsPath()Initializes a new instance of the GraphicsPath class.
GraphicsPath(Figure[] figures)Initializes a new instance of the GraphicsPath class.
GraphicsPath(Figure[] figures, int fillMode)Initializes a new instance of the GraphicsPath class.
GraphicsPath(int fillMode)Initializes a new instance of the GraphicsPath class.

Methods

MethodDescription
addFigure(Figure figure)Adds a new figure.
addFigures(Figure[] figures)Adds new figures.
addPath(GraphicsPath addingPath)Appends the specified com.aspose.psd.GraphicsPath to this path.
addPath(GraphicsPath addingPath, boolean connect)Appends the specified com.aspose.psd.GraphicsPath to this path.
deepClone()Performs a deep clone of this graphics path.
equals(Object arg0)
flatten()Converts each curve in this path into a sequence of connected line segments.
flatten(Matrix matrix)Applies the specified transform and then converts each curve in this com.aspose.psd.GraphicsPath into a sequence of connected line segments.
flatten(Matrix matrix, float flatness)Converts each curve in this com.aspose.psd.GraphicsPath into a sequence of connected line segments.
getBounds()Gets or sets the object’s bounds.
getBounds(Matrix matrix)Gets the object’s bounds.
getBounds(Matrix matrix, Pen pen)Gets the object’s bounds.
getClass()
getFigures()Gets the path figures.
getFillMode()Gets a com.aspose.psd.FillMode enumeration that determines how the interiors of shapes in this com.aspose.psd.GraphicsPath are filled.
hashCode()
isOutlineVisible(Point point, Pen pen)Indicates whether the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.pen .
isOutlineVisible(Point pt, Pen pen, Graphics graphics)Indicates whether the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.Pen and using the specified com.aspose.psd.graphics .
isOutlineVisible(PointF point, Pen pen)Indicates whether the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.pen .
isOutlineVisible(PointF pt, Pen pen, Graphics graphics)Indicates whether the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.Pen and using the specified com.aspose.psd.graphics .
isOutlineVisible(float x, float y, Pen pen)Indicates whether the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.pen .
isOutlineVisible(float x, float y, Pen pen, Graphics graphics)Indicates whether the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.Pen and using the specified com.aspose.psd.graphics .
isOutlineVisible(int x, int y, Pen pen)Indicates whether the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.pen .
isOutlineVisible(int x, int y, Pen pen, Graphics graphics)Indicates whether the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.Pen and using the specified com.aspose.psd.graphics .
isVisible(Point point)Indicates whether the specified point is contained within this com.aspose.psd.graphicsPath .
isVisible(Point pt, Graphics graphics)Indicates whether the specified point is contained within this com.aspose.psd.graphicsPath .
isVisible(PointF point)Indicates whether the specified point is contained within this com.aspose.psd.graphicsPath .
isVisible(PointF pt, Graphics graphics)Indicates whether the specified point is contained within this com.aspose.psd.graphicsPath .
isVisible(float x, float y)Indicates whether the specified point is contained within this com.aspose.psd.graphicsPath .
isVisible(float x, float y, Graphics graphics)Indicates whether the specified point is contained within this com.aspose.psd.GraphicsPath in the visible clip region of the specified com.aspose.psd.graphics .
isVisible(int x, int y)Indicates whether the specified point is contained within this com.aspose.psd.graphicsPath .
isVisible(int x, int y, Graphics graphics)Indicates whether the specified point is contained within this com.aspose.psd.GraphicsPath , using the specified com.aspose.psd.graphics .
notify()
notifyAll()
removeFigure(Figure figure)Removes a figure.
removeFigures(Figure[] figures)Removes figures.
reset()Empties the graphics path and sets the com.aspose.psd.FillMode to F:com.aspose.psd.fillMode.alternate .
reverse()Reverses the order of figures, shapes, and points in each shape of this com.aspose.psd.graphicsPath .
setFillMode(int value)Sets a com.aspose.psd.FillMode enumeration that determines how the interiors of shapes in this com.aspose.psd.GraphicsPath are filled.
toString()
transform(Matrix transform)Applies the specified transformation to the shape.
wait()
wait(long arg0)
wait(long arg0, int arg1)
warp(PointF[] destPoints, RectangleF srcRect)Applies a warp transform, defined by a rectangle and a parallelogram, to this com.aspose.psd.graphicsPath .
warp(PointF[] destPoints, RectangleF srcRect, Matrix matrix)Applies a warp transform, defined by a rectangle and a parallelogram, to this com.aspose.psd.graphicsPath .
warp(PointF[] destPoints, RectangleF srcRect, Matrix matrix, int warpMode)Applies a warp transform, defined by a rectangle and a parallelogram, to this com.aspose.psd.graphicsPath .
warp(PointF[] destPoints, RectangleF srcRect, Matrix matrix, int warpMode, float flatness)Applies a warp transform, defined by a rectangle and a parallelogram, to this com.aspose.psd.graphicsPath .
widen(Pen pen)Adds an additional outline to the path.
widen(Pen pen, Matrix matrix)Adds an additional outline to the com.aspose.psd.graphicsPath .
widen(Pen pen, Matrix matrix, float flatness)Replaces this com.aspose.psd.GraphicsPath with curves that enclose the area that is filled when this path is drawn by the specified pen.

GraphicsPath()

public GraphicsPath()

Initializes a new instance of the GraphicsPath class.

GraphicsPath(Figure[] figures)

public GraphicsPath(Figure[] figures)

Initializes a new instance of the GraphicsPath class.

Parameters:

ParameterTypeDescription
figuresFigure[]The figures to initialize from.

GraphicsPath(Figure[] figures, int fillMode)

public GraphicsPath(Figure[] figures, int fillMode)

Initializes a new instance of the GraphicsPath class.

Parameters:

ParameterTypeDescription
figuresFigure[]The figures to initialize from.
fillModeintThe fill mode.

GraphicsPath(int fillMode)

public GraphicsPath(int fillMode)

Initializes a new instance of the GraphicsPath class.

Parameters:

ParameterTypeDescription
fillModeintThe fill mode.

addFigure(Figure figure)

public void addFigure(Figure figure)

Adds a new figure.

Parameters:

ParameterTypeDescription
figureFigureThe figure to add.

addFigures(Figure[] figures)

public void addFigures(Figure[] figures)

Adds new figures.

Parameters:

ParameterTypeDescription
figuresFigure[]The figures to add.

addPath(GraphicsPath addingPath)

public void addPath(GraphicsPath addingPath)

Appends the specified com.aspose.psd.GraphicsPath to this path.

Parameters:

ParameterTypeDescription
addingPathGraphicsPathThe com.aspose.psd.GraphicsPath to add.

addPath(GraphicsPath addingPath, boolean connect)

public void addPath(GraphicsPath addingPath, boolean connect)

Appends the specified com.aspose.psd.GraphicsPath to this path.

Parameters:

ParameterTypeDescription
addingPathGraphicsPathThe com.aspose.psd.GraphicsPath to add.
connectbooleanA Boolean value that specifies whether the first figure in the added path is part of the last figure in this path. A value of true specifies that the first figure in the added path is part of the last figure in this path. A value of false specifies that the first figure in the added path is separate from the last figure in this path.

deepClone()

public GraphicsPath deepClone()

Performs a deep clone of this graphics path.

Returns: GraphicsPath - A deep clone of the graphics path.

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

flatten()

public void flatten()

Converts each curve in this path into a sequence of connected line segments.

flatten(Matrix matrix)

public void flatten(Matrix matrix)

Applies the specified transform and then converts each curve in this com.aspose.psd.GraphicsPath into a sequence of connected line segments.

Parameters:

ParameterTypeDescription
matrixMatrixA com.aspose.psd.Matrix by which to transform this com.aspose.psd.GraphicsPath before flattening.

flatten(Matrix matrix, float flatness)

public void flatten(Matrix matrix, float flatness)

Converts each curve in this com.aspose.psd.GraphicsPath into a sequence of connected line segments.

Parameters:

ParameterTypeDescription
matrixMatrixA com.aspose.psd.Matrix by which to transform this com.aspose.psd.GraphicsPath before flattening.
flatnessfloatSpecifies the maximum permitted error between the curve and its flattened approximation. A value of 0.25 is the default. Reducing the flatness value will increase the number of line segments in the approximation.

getBounds()

public RectangleF getBounds()

Gets or sets the object’s bounds.

Returns: RectangleF - The object’s bounds.

getBounds(Matrix matrix)

public RectangleF getBounds(Matrix matrix)

Gets the object’s bounds.

Parameters:

ParameterTypeDescription
matrixMatrixThe matrix to apply before bounds will be calculated.

Returns: RectangleF - The estimated object’s bounds.

getBounds(Matrix matrix, Pen pen)

public RectangleF getBounds(Matrix matrix, Pen pen)

Gets the object’s bounds.

Parameters:

ParameterTypeDescription
matrixMatrixThe matrix to apply before bounds will be calculated.
penPenThe pen to use for object. This can influence the object’s bounds size.

Returns: RectangleF - The estimated object’s bounds.

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getFigures()

public Figure[] getFigures()

Gets the path figures.

Returns: com.aspose.psd.Figure[] - The path figures.

getFillMode()

public int getFillMode()

Gets a com.aspose.psd.FillMode enumeration that determines how the interiors of shapes in this com.aspose.psd.GraphicsPath are filled.

Returns: int - The fill mode. A com.aspose.psd.FillMode enumeration that specifies how the interiors of shapes in this com.aspose.psd.GraphicsPath are filled.

hashCode()

public native int hashCode()

Returns: int

isOutlineVisible(Point point, Pen pen)

public boolean isOutlineVisible(Point point, Pen pen)

Indicates whether the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.pen .

Parameters:

ParameterTypeDescription
pointPointA com.aspose.psd.Point that specifies the location to test.
penPenThe com.aspose.psd.Pen to test.

Returns: boolean - This method returns true if the specified point is contained within the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.Pen ; otherwise, false.

isOutlineVisible(Point pt, Pen pen, Graphics graphics)

public boolean isOutlineVisible(Point pt, Pen pen, Graphics graphics)

Indicates whether the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.Pen and using the specified com.aspose.psd.graphics .

Parameters:

ParameterTypeDescription
ptPointA com.aspose.psd.Point that specifies the location to test.
penPenThe com.aspose.psd.Pen to test.
graphicsGraphicsThe com.aspose.psd.Graphics for which to test visibility.

Returns: boolean - This method returns true if the specified point is contained within the outline of this com.aspose.psd.GraphicsPath as drawn with the specified com.aspose.psd.Pen ; otherwise, false.

isOutlineVisible(PointF point, Pen pen)

public boolean isOutlineVisible(PointF point, Pen pen)

Indicates whether the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.pen .

Parameters:

ParameterTypeDescription
pointPointFA com.aspose.psd.PointF that specifies the location to test.
penPenThe com.aspose.psd.Pen to test.

Returns: boolean - This method returns true if the specified point is contained within the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.Pen ; otherwise, false.

isOutlineVisible(PointF pt, Pen pen, Graphics graphics)

public boolean isOutlineVisible(PointF pt, Pen pen, Graphics graphics)

Indicates whether the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.Pen and using the specified com.aspose.psd.graphics .

Parameters:

ParameterTypeDescription
ptPointFA com.aspose.psd.PointF that specifies the location to test.
penPenThe com.aspose.psd.Pen to test.
graphicsGraphicsThe com.aspose.psd.Graphics for which to test visibility.

Returns: boolean - This method returns true if the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath as drawn with the specified com.aspose.psd.Pen ; otherwise, false.

isOutlineVisible(float x, float y, Pen pen)

public boolean isOutlineVisible(float x, float y, Pen pen)

Indicates whether the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.pen .

Parameters:

ParameterTypeDescription
xfloatThe x-coordinate of the point to test.
yfloatThe y-coordinate of the point to test.
penPenThe com.aspose.psd.Pen to test.

Returns: boolean - This method returns true if the specified point is contained within the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.Pen ; otherwise, false.

isOutlineVisible(float x, float y, Pen pen, Graphics graphics)

public boolean isOutlineVisible(float x, float y, Pen pen, Graphics graphics)

Indicates whether the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.Pen and using the specified com.aspose.psd.graphics .

Parameters:

ParameterTypeDescription
xfloatThe x-coordinate of the point to test.
yfloatThe y-coordinate of the point to test.
penPenThe com.aspose.psd.Pen to test.
graphicsGraphicsThe com.aspose.psd.Graphics for which to test visibility.

Returns: boolean - This method returns true if the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath as drawn with the specified com.aspose.psd.Pen ; otherwise, false.

isOutlineVisible(int x, int y, Pen pen)

public boolean isOutlineVisible(int x, int y, Pen pen)

Indicates whether the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.pen .

Parameters:

ParameterTypeDescription
xintThe x-coordinate of the point to test.
yintThe y-coordinate of the point to test.
penPenThe com.aspose.psd.Pen to test.

Returns: boolean - This method returns true if the specified point is contained within the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.Pen ; otherwise, false.

isOutlineVisible(int x, int y, Pen pen, Graphics graphics)

public boolean isOutlineVisible(int x, int y, Pen pen, Graphics graphics)

Indicates whether the specified point is contained within (under) the outline of this com.aspose.psd.GraphicsPath when drawn with the specified com.aspose.psd.Pen and using the specified com.aspose.psd.graphics .

Parameters:

ParameterTypeDescription
xintThe x-coordinate of the point to test.
yintThe y-coordinate of the point to test.
penPenThe com.aspose.psd.Pen to test.
graphicsGraphicsThe com.aspose.psd.Graphics for which to test visibility.

Returns: boolean - This method returns true if the specified point is contained within the outline of this com.aspose.psd.GraphicsPath as drawn with the specified com.aspose.psd.Pen ; otherwise, false.

isVisible(Point point)

public boolean isVisible(Point point)

Indicates whether the specified point is contained within this com.aspose.psd.graphicsPath .

Parameters:

ParameterTypeDescription
pointPointA com.aspose.psd.Point that represents the point to test.

Returns: boolean - This method returns true if the specified point is contained within this com.aspose.psd.GraphicsPath ; otherwise, false.

isVisible(Point pt, Graphics graphics)

public boolean isVisible(Point pt, Graphics graphics)

Indicates whether the specified point is contained within this com.aspose.psd.graphicsPath .

Parameters:

ParameterTypeDescription
ptPointA com.aspose.psd.Point that represents the point to test.
graphicsGraphicsThe com.aspose.psd.Graphics for which to test visibility.

Returns: boolean - This method returns true if the specified point is contained within this com.aspose.psd.GraphicsPath ; otherwise, false.

isVisible(PointF point)

public boolean isVisible(PointF point)

Indicates whether the specified point is contained within this com.aspose.psd.graphicsPath .

Parameters:

ParameterTypeDescription
pointPointFA com.aspose.psd.PointF that represents the point to test.

Returns: boolean - This method returns true if the specified point is contained within this com.aspose.psd.GraphicsPath ; otherwise, false.

isVisible(PointF pt, Graphics graphics)

public boolean isVisible(PointF pt, Graphics graphics)

Indicates whether the specified point is contained within this com.aspose.psd.graphicsPath .

Parameters:

ParameterTypeDescription
ptPointFA com.aspose.psd.PointF that represents the point to test.
graphicsGraphicsThe com.aspose.psd.Graphics for which to test visibility.

Returns: boolean - This method returns true if the specified point is contained within this; otherwise, false.

isVisible(float x, float y)

public boolean isVisible(float x, float y)

Indicates whether the specified point is contained within this com.aspose.psd.graphicsPath .

Parameters:

ParameterTypeDescription
xfloatThe x-coordinate of the point to test.
yfloatThe y-coordinate of the point to test.

Returns: boolean - This method returns true if the specified point is contained within this com.aspose.psd.GraphicsPath ; otherwise, false.

isVisible(float x, float y, Graphics graphics)

public boolean isVisible(float x, float y, Graphics graphics)

Indicates whether the specified point is contained within this com.aspose.psd.GraphicsPath in the visible clip region of the specified com.aspose.psd.graphics .

Parameters:

ParameterTypeDescription
xfloatThe x-coordinate of the point to test.
yfloatThe y-coordinate of the point to test.
graphicsGraphicsThe com.aspose.psd.Graphics for which to test visibility.

Returns: boolean - This method returns true if the specified point is contained within this com.aspose.psd.GraphicsPath ; otherwise, false.

isVisible(int x, int y)

public boolean isVisible(int x, int y)

Indicates whether the specified point is contained within this com.aspose.psd.graphicsPath .

Parameters:

ParameterTypeDescription
xintThe x-coordinate of the point to test.
yintThe y-coordinate of the point to test.

Returns: boolean - This method returns true if the specified point is contained within this com.aspose.psd.GraphicsPath ; otherwise, false.

isVisible(int x, int y, Graphics graphics)

public boolean isVisible(int x, int y, Graphics graphics)

Indicates whether the specified point is contained within this com.aspose.psd.GraphicsPath , using the specified com.aspose.psd.graphics .

Parameters:

ParameterTypeDescription
xintThe x-coordinate of the point to test.
yintThe y-coordinate of the point to test.
graphicsGraphicsThe com.aspose.psd.Graphics for which to test visibility.

Returns: boolean - This method returns true if the specified point is contained within this com.aspose.psd.GraphicsPath ; otherwise, false.

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

removeFigure(Figure figure)

public void removeFigure(Figure figure)

Removes a figure.

Parameters:

ParameterTypeDescription
figureFigureThe figure to remove.

removeFigures(Figure[] figures)

public void removeFigures(Figure[] figures)

Removes figures.

Parameters:

ParameterTypeDescription
figuresFigure[]The figures to remove.

reset()

public void reset()

Empties the graphics path and sets the com.aspose.psd.FillMode to F:com.aspose.psd.fillMode.alternate .

reverse()

public void reverse()

Reverses the order of figures, shapes, and points in each shape of this com.aspose.psd.graphicsPath .

setFillMode(int value)

public void setFillMode(int value)

Sets a com.aspose.psd.FillMode enumeration that determines how the interiors of shapes in this com.aspose.psd.GraphicsPath are filled.

Parameters:

ParameterTypeDescription
valueintThe fill mode.

toString()

public String toString()

Returns: java.lang.String

transform(Matrix transform)

public void transform(Matrix transform)

Applies the specified transformation to the shape.

Parameters:

ParameterTypeDescription
transformMatrixThe transformation to apply.

wait()

public final void wait()

wait(long arg0)

public final void wait(long arg0)

Parameters:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int

warp(PointF[] destPoints, RectangleF srcRect)

public void warp(PointF[] destPoints, RectangleF srcRect)

Applies a warp transform, defined by a rectangle and a parallelogram, to this com.aspose.psd.graphicsPath .

Parameters:

ParameterTypeDescription
destPointsPointF[]An array of com.aspose.psd.PointF structures that define a parallelogram to which the rectangle defined by srcRect is transformed. The array can contain either three or four elements. If the array contains three elements, the lower-right corner of the parallelogram is implied by the first three points.
srcRectRectangleFA com.aspose.psd.RectangleF that represents the rectangle that is transformed to the parallelogram defined by destPoints .

warp(PointF[] destPoints, RectangleF srcRect, Matrix matrix)

public void warp(PointF[] destPoints, RectangleF srcRect, Matrix matrix)

Applies a warp transform, defined by a rectangle and a parallelogram, to this com.aspose.psd.graphicsPath .

Parameters:

ParameterTypeDescription
destPointsPointF[]An array of com.aspose.psd.PointF structures that define a parallelogram to which the rectangle defined by srcRect is transformed. The array can contain either three or four elements. If the array contains three elements, the lower-right corner of the parallelogram is implied by the first three points.
srcRectRectangleFA com.aspose.psd.RectangleF that represents the rectangle that is transformed to the parallelogram defined by destPoints .
matrixMatrixA com.aspose.psd.Matrix that specifies a geometric transform to apply to the path.

warp(PointF[] destPoints, RectangleF srcRect, Matrix matrix, int warpMode)

public void warp(PointF[] destPoints, RectangleF srcRect, Matrix matrix, int warpMode)

Applies a warp transform, defined by a rectangle and a parallelogram, to this com.aspose.psd.graphicsPath .

Parameters:

ParameterTypeDescription
destPointsPointF[]An array of com.aspose.psd.PointF structures that defines a parallelogram to which the rectangle defined by srcRect is transformed. The array can contain either three or four elements. If the array contains three elements, the lower-right corner of the parallelogram is implied by the first three points.
srcRectRectangleFA com.aspose.psd.RectangleF that represents the rectangle that is transformed to the parallelogram defined by destPoints .
matrixMatrixA com.aspose.psd.Matrix that specifies a geometric transform to apply to the path.
warpModeintA com.aspose.psd.WarpMode enumeration that specifies whether this warp operation uses perspective or bilinear mode.

warp(PointF[] destPoints, RectangleF srcRect, Matrix matrix, int warpMode, float flatness)

public void warp(PointF[] destPoints, RectangleF srcRect, Matrix matrix, int warpMode, float flatness)

Applies a warp transform, defined by a rectangle and a parallelogram, to this com.aspose.psd.graphicsPath .

Parameters:

ParameterTypeDescription
destPointsPointF[]An array of com.aspose.psd.PointF structures that define a parallelogram to which the rectangle defined by srcRect is transformed. The array can contain either three or four elements. If the array contains three elements, the lower-right corner of the parallelogram is implied by the first three points.
srcRectRectangleFA com.aspose.psd.RectangleF that represents the rectangle that is transformed to the parallelogram defined by destPoints .
matrixMatrixA com.aspose.psd.Matrix that specifies a geometric transform to apply to the path.
warpModeintA com.aspose.psd.WarpMode enumeration that specifies whether this warp operation uses perspective or bilinear mode.
flatnessfloatA value from 0 through 1 that specifies how flat the resulting path is. For more information, see the com.aspose.psd.GraphicsPath.flatten methods.

widen(Pen pen)

public void widen(Pen pen)

Adds an additional outline to the path.

Parameters:

ParameterTypeDescription
penPenA com.aspose.psd.Pen that specifies the width between the original outline of the path and the new outline this method creates.

widen(Pen pen, Matrix matrix)

public void widen(Pen pen, Matrix matrix)

Adds an additional outline to the com.aspose.psd.graphicsPath .

Parameters:

ParameterTypeDescription
penPenA com.aspose.psd.Pen that specifies the width between the original outline of the path and the new outline this method creates.
matrixMatrixA com.aspose.psd.Matrix that specifies a transform to apply to the path before widening.

widen(Pen pen, Matrix matrix, float flatness)

public void widen(Pen pen, Matrix matrix, float flatness)

Replaces this com.aspose.psd.GraphicsPath with curves that enclose the area that is filled when this path is drawn by the specified pen.

Parameters:

ParameterTypeDescription
penPenA com.aspose.psd.Pen that specifies the width between the original outline of the path and the new outline this method creates.
matrixMatrixA com.aspose.psd.Matrix that specifies a transform to apply to the path before widening.
flatnessfloatA value that specifies the flatness for curves.