ImagickDraw::polyline

(PECL imagick 2.0.0) Draws a polyline bool ImagickDraw::polyline ( array $coordinates ) Draws a polyline using the current stroke, stroke width, and fill color or texture, using the specified array of coordinates. Parameters: coordinates array of x and y coordinates: array( array( 'x' => 4, 'y' => 6 ), array( 'x' => 8, 'y' => 10 ) ) Returns

ImagickDraw::polygon

(PECL imagick 2.0.0) Draws a polygon bool ImagickDraw::polygon ( array $coordinates ) Draws a polygon using the current stroke, stroke width, and fill color or texture, using the specified array of coordinates. Parameters: coordinates multidimensional array like array( array( 'x' => 3, 'y' => 4 ), array( 'x' => 2, 'y' => 6 ) ); Returns:

ImagickDraw::point

(PECL imagick 2.0.0) Draws a point bool ImagickDraw::point ( float $x, float $y ) Draws a point using the current stroke color and stroke thickness at the specified coordinates. Parameters: x point's x coordinate y point's y coordinate Returns: No value is returned. This fun

ImagickDraw::pathStart

(PECL imagick 2.0.0) Declares the start of a path drawing list bool ImagickDraw::pathStart ( void ) Declares the start of a path drawing list which is terminated by a matching DrawPathFinish() command. All other DrawPath commands must be enclosed between a and a DrawPathFinish() command. This is because path drawing commands are subordinate commands and they do not function by themselves. Returns:

ImagickDraw::pathMoveToRelative

(PECL imagick 2.0.0) Starts a new sub-path bool ImagickDraw::pathMoveToRelative ( float $x, float $y ) Starts a new sub-path at the given coordinate using relative coordinates. The current point then becomes the specified coordinate. Parameters: x target x coordinate y target y coordinate Returns: No value is r

ImagickDraw::pathMoveToAbsolute

(PECL imagick 2.0.0) Starts a new sub-path bool ImagickDraw::pathMoveToAbsolute ( float $x, float $y ) Starts a new sub-path at the given coordinate using absolute coordinates. The current point then becomes the specified coordinate. Parameters: x x coordinate of the starting point y y coordinate of the starting point

ImagickDraw::pathLineToVerticalRelative

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

ImagickDraw::pathLineToVerticalAbsolute

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

ImagickDraw::pathLineToRelative

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

ImagickDraw::pathLineToHorizontalRelative

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