ImagickDraw::composite

(PECL imagick 2.0.0) Composites an image onto the current image bool ImagickDraw::composite ( int $compose, float $x, float $y, float $width, float $height, Imagick $compositeWand ) Composites an image onto the current image, using the specified composition operator, specified position, and at the specified size. Parameters: compose composition operator. One of COMPOSITE_

ImagickDraw::comment

(PECL imagick 2.0.0) Adds a comment bool ImagickDraw::comment ( string $comment ) Adds a comment to a vector output stream. Parameters: comment The comment string to add to vector output stream Returns: No value is returned. This function is currently not documented; only its argument list is available.

ImagickDraw::color

(PECL imagick 2.0.0) Draws color on image bool ImagickDraw::color ( float $x, float $y, int $paintMethod ) Draws color on image using the current fill color, starting at specified position, and using specified paint method. Parameters: x x coordinate of the paint y y coordinate of the paint paintMethod

ImagickDraw::clone

(PECL imagick 2.0.0) Makes an exact copy of the specified ImagickDraw object ImagickDraw ImagickDraw::clone ( void ) Makes an exact copy of the specified ImagickDraw object. Returns: What the function returns, first on success, then on failure. See also the &return.success; entity This function is currently not documented; only its argument list is availabl

ImagickDraw::clear

(PECL imagick 2.0.0) Clears the ImagickDraw bool ImagickDraw::clear ( void ) Clears the ImagickDraw object of any accumulated commands, and resets the settings it contains to their defaults. Returns: Returns an ImagickDraw object. This function is currently not documented; only its argument list is available.

ImagickDraw::circle

(PECL imagick 2.0.0) Draws a circle bool ImagickDraw::circle ( float $ox, float $oy, float $px, float $py ) Draws a circle on the image. Parameters: ox origin x coordinate oy origin y coordinate px perimeter x coordinate py perimeter y coordinate

ImagickDraw::bezier

(PECL imagick 2.0.0) Draws a bezier curve bool ImagickDraw::bezier ( array $coordinates ) Draws a bezier curve through a set of points on the image. Parameters: coordinates Multidimensional array like array( array( 'x' => 1, 'y' => 2 ), array( 'x' => 3, 'y' => 4 ) ) Returns: No value is returned. T

ImagickDraw::arc

(PECL imagick 2.0.0) Draws an arc bool ImagickDraw::arc ( float $sx, float $sy, float $ex, float $ey, float $sd, float $ed ) Draws an arc falling within a specified bounding rectangle on the image. Parameters: sx Starting x ordinate of bounding rectangle sy starting y ordinate of bounding rectangle ex

ImagickDraw::annotation

(PECL imagick 2.0.0) Draws text on the image bool ImagickDraw::annotation ( float $x, float $y, string $text ) Draws text on the image. Parameters: x The x coordinate where text is drawn y The y coordinate where text is drawn text The text to draw on the image Returns: No val

ImagickDraw::affine

(PECL imagick 2.0.0) Adjusts the current affine transformation matrix bool ImagickDraw::affine ( array $affine ) Adjusts the current affine transformation matrix with the specified affine transformation matrix. Parameters: affine Affine matrix parameters Returns: No value is returned. This function is currentl