BezierShape Class

Summary: Represents a bezier spline.

Module: aspose.psd.shapes

Full Name: aspose.psd.shapes.BezierShape

Inheritance: IOrderedShape, PolygonShape

Aspose.PSD Version: 24.4.0

Constructors

NameDescription
BezierShape()Initializes a new instance of the BezierShape class.
BezierShape(points)Initializes a new instance of the BezierShape class.
BezierShape(points, is_closed)Initializes a new instance of the BezierShape class.

Properties

NameTypeAccessDescription
boundsRectangleFrGets the object’s bounds.
centerPointFrGets the shape’s center.
end_pointPointFrGets the ending shape point.
has_segmentsboolrGets a value indicating whether shape has segments.
is_closedboolr/wGets or sets a value indicating whether shape is closed.
pointsPointF[]r/wGets or sets the curve points.
segmentsShapeSegment[]rGets the shape segments.
start_pointPointFrGets the starting shape point.

Methods

NameDescription
get_bounds(matrix)Gets the object’s bounds.
get_bounds(matrix, pen)Gets the object’s bounds.
reverse()Reverses the order of points for this shape.
transform(transform)Applies the specified transformation to the shape.

Constructor: BezierShape()

 BezierShape() 

Initializes a new instance of the BezierShape class.

Constructor: BezierShape(points)

 BezierShape(points) 

Initializes a new instance of the BezierShape class.

Parameters:

ParameterTypeDescription
pointsPointF[]The points array.

Constructor: BezierShape(points, is_closed)

 BezierShape(points, is_closed) 

Initializes a new instance of the BezierShape class.

Parameters:

ParameterTypeDescription
pointsPointF[]The points array.
is_closedboolIf set to true the bezier spline is closed.

Method: get_bounds(matrix)

 get_bounds(matrix) 

Gets the object’s bounds.

Parameters:

ParameterTypeDescription
matrixMatrixThe matrix to apply before bounds will be calculated.

Returns

TypeDescription
RectangleFThe estimated object’s bounds.

Method: get_bounds(matrix, pen)

 get_bounds(matrix, 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

TypeDescription
RectangleFThe estimated object’s bounds.

Method: transform(transform)

 transform(transform) 

Applies the specified transformation to the shape.

Parameters:

ParameterTypeDescription
transformMatrixThe transformation to apply.