GmagickDraw::setfillcolor

(PECL gmagick >= Unknown) Sets the fill color to be used for drawing filled objects. public GmagickDraw GmagickDraw::setfillcolor ( string $color ) Sets the fill color to be used for drawing filled objects. Parameters: color GmagickPixel indicating color to use for filling. Returns: The GmagickDraw object on success

GmagickDraw::scale

(PECL gmagick >= Unknown) Adjusts the scaling factor public GmagickDraw GmagickDraw::scale ( float $x, float $y ) Adjusts the scaling factor to apply in the horizontal and vertical directions to the current coordinate space. Parameters: x horizontal scale factor y vertical scale factor Returns: The GmagickDr

GmagickDraw::roundrectangle

(PECL gmagick >= Unknown) Draws a rounded rectangle public GmagickDraw GmagickDraw::roundrectangle ( float $x1, float $y1, float $x2, float $y2, float $rx, float $ry ) Draws a rounded rectangle given two coordinates, x and y corner radiuses and using the current stroke, stroke width, and fill settings. Parameters: x1 x ordinate of first coordinate

GmagickDraw::rotate

(PECL gmagick >= Unknown) Applies the specified rotation to the current coordinate space public GmagickDraw GmagickDraw::rotate ( float $degrees ) Applies the specified rotation to the current coordinate space. Parameters: degrees degrees of rotation Returns: The GmagickDraw object on success

GmagickDraw::rectangle

(PECL gmagick >= Unknown) Draws a rectangle public GmagickDraw GmagickDraw::rectangle ( float $x1, float $y1, float $x2, float $y2 ) Draws a rectangle given two coordinates and using the current stroke, stroke width, and fill settings. Parameters: x1 x ordinate of first coordinate y1 y ordinate of first coordinate

GmagickDraw::polyline

(PECL gmagick >= Unknown) Draws a polyline public GmagickDraw GmagickDraw::polyline ( array $coordinate_array ) Draws a polyline using the current stroke, stroke width, and fill color or texture, using the specified array of coordinates. Parameters: coordinate_array The array of coordinates Returns: The GmagickDraw object on success

GmagickDraw::polygon

(PECL gmagick >= Unknown) Draws a polygon public GmagickDraw GmagickDraw::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 coordinate array Returns: The GmagickDraw object on success

GmagickDraw::point

(PECL gmagick >= Unknown) Draws a point public GmagickDraw GmagickDraw::point ( float $x, float $y ) Draws a point using the current stroke color and stroke thickness at the specified coordinates. Parameters: x target x coordinate y target y coordinate Returns: The GmagickDraw object on success

GmagickDraw::line

(PECL gmagick >= Unknown) The line purpose public GmagickDraw GmagickDraw::line ( float $sx, float $sy, float $ex, float $ey ) Draws a line on the image using the current stroke color, stroke opacity, and stroke width. Parameters: sx starting x ordinate sy starting y ordinate ex ending x ordinate

GmagickDraw::gettextencoding

(PECL gmagick >= Unknown) Returns the code set used for text annotations public string GmagickDraw::gettextencoding ( void ) Returns a string which specifies the code set used for text annotations. Returns: Returns a string specifying the code set or false if text encoding is not set.