ImagickDraw::pathLineToHorizontalAbsolute

(PECL imagick 2.0.0) Draws a horizontal line path bool ImagickDraw::pathLineToHorizontalAbsolute ( float $x ) Draws a horizontal line path from the current point to the target point using absolute coordinates. The target point then becomes the new current point. Parameters: x x coordinate Returns: No value is returned.

ImagickDraw::pathLineToAbsolute

(PECL imagick 2.0.0) Draws a line path bool ImagickDraw::pathLineToAbsolute ( float $x, float $y ) Draws a line path from the current point to the given coordinate using absolute coordinates. The coordinate then becomes the new current point. Parameters: x starting x coordinate y ending x coordinate Returns: No

ImagickDraw::pathFinish

(PECL imagick 2.0.0) Terminates the current path bool ImagickDraw::pathFinish ( void ) Terminates the current path. Returns: No value is returned. This function is currently not documented; only its argument list is available.

ImagickDraw::pathEllipticArcRelative

(PECL imagick 2.0.0) Draws an elliptical arc bool ImagickDraw::pathEllipticArcRelative ( float $rx, float $ry, float $x_axis_rotation, bool $large_arc_flag, bool $sweep_flag, float $x, float $y ) Draws an elliptical arc from the current point to (x, y) using relative coordinates. The size and orientation of the ellipse are defined by two radii (rx, ry) and an xAxisRotation, which indicates how the ellipse as a whole is rotat

ImagickDraw::pathEllipticArcAbsolute

(PECL imagick 2.0.0) Draws an elliptical arc bool ImagickDraw::pathEllipticArcAbsolute ( float $rx, float $ry, float $x_axis_rotation, bool $large_arc_flag, bool $sweep_flag, float $x, float $y ) Draws an elliptical arc from the current point to (x, y) using absolute coordinates. The size and orientation of the ellipse are defined by two radii (rx, ry) and an xAxisRotation, which indicates how the ellipse as a whole is rotat

ImagickDraw::pathCurveToSmoothRelative

(PECL imagick 2.0.0) Draws a cubic Bezier curve bool ImagickDraw::pathCurveToSmoothRelative ( float $x2, float $y2, float $x, float $y ) Draws a cubic Bezier curve from the current point to (x,y) using relative coordinates. The first control point is assumed to be the reflection of the second control point on the previous command relative to the current point. (If there is no previous command or if the previous command was n

ImagickDraw::pathCurveToSmoothAbsolute

(PECL imagick 2.0.0) Draws a cubic Bezier curve bool ImagickDraw::pathCurveToSmoothAbsolute ( float $x2, float $y2, float $x, float $y ) Draws a cubic Bezier curve from the current point to (x,y) using absolute coordinates. The first control point is assumed to be the reflection of the second control point on the previous command relative to the current point. (If there is no previous command or if the previous command was n

ImagickDraw::pathCurveToRelative

(PECL imagick 2.0.0) Draws a cubic Bezier curve bool ImagickDraw::pathCurveToRelative ( float $x1, float $y1, float $x2, float $y2, float $x, float $y ) Draws a cubic Bezier curve from the current point to (x,y) using (x1,y1) as the control point at the beginning of the curve and (x2,y2) as the control point at the end of the curve using relative coordinates. At the end of the command, the new current point becomes the final

ImagickDraw::pathCurveToQuadraticBezierSmoothRelative

(PECL imagick 2.0.0) Draws a quadratic Bezier curve bool ImagickDraw::pathCurveToQuadraticBezierSmoothRelative ( float $x, float $y ) Draws a quadratic Bezier curve (using relative coordinates) from the current point to (x, y). The control point is assumed to be the reflection of the control point on the previous command relative to the current point. (If there is no previous command or if the previous command was not a Draw

ImagickDraw::pathCurveToQuadraticBezierSmoothAbsolute

(PECL imagick 2.0.0) Draws a quadratic Bezier curve bool ImagickDraw::pathCurveToQuadraticBezierSmoothAbsolute ( float $x, float $y ) Draws a quadratic Bezier curve (using absolute coordinates) from the current point to (x,y). The control point is assumed to be the reflection of the control point on the previous command relative to the current point. (If there is no previous command or if the previous command was not a DrawP