GmagickDraw::ellipse

(PECL gmagick >= Unknown) Draws an ellipse on the image public GmagickDraw GmagickDraw::ellipse ( float $ox, float $oy, float $rx, float $ry, float $start, float $end ) Draws an ellipse on the image. Parameters: ox origin x ordinate oy origin y ordinate rx radius in x ry

GmagickDraw::bezier

(PECL gmagick >= Unknown) Draws a bezier curve public GmagickDraw GmagickDraw::bezier ( array $coordinate_array ) Draws a bezier curve through a set of points on the image. Parameters: coordinate_array Coordinates array Returns: The GmagickDraw object on success

GmagickDraw::arc

(PECL gmagick >= Unknown) Draws an arc public GmagickDraw GmagickDraw::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

GmagickDraw::annotate

(PECL gmagick >= Unknown) Draws text on the image public GmagickDraw GmagickDraw::annotate ( float $x, float $y, string $text ) Draws text on the image. Parameters: x x ordinate to left of text y y ordinate to text baseline text text to draw Returns: The GmagickDraw object

Gmagick::writeimage

(PECL gmagick >= Unknown) Writes an image to the specified filename public Gmagick Gmagick::writeimage ( string $filename [, bool $all_frames = false ] ) Writes an image to the specified filename. If the filename parameter is NULL, the image is written to the filename set by Gmagick::ReadImage() or Gmagick::SetImageFilename(). Parameters: filename The image filename.

Gmagick::write

(PECL gmagick >= Unknown) Writes an image to the specified filename public void Gmagick::write ( string $filename ) Writes an image to the specified filename. If the filename parameter is NULL, the image is written to the filename set by Gmagick::ReadImage() or Gmagick::SetImageFilename(). Parameters: filename The image filename. Returns: The

Gmagick::trimimage

(PECL gmagick >= Unknown) Remove edges from the image public Gmagick Gmagick::trimimage ( float $fuzz ) Remove edges that are the background color from the image. Parameters: fuzz By default target must match a particular pixel color exactly. However, in many cases two colors may differ by a small amount. The fuzz member of image defines how much tolerance is acceptabl

Gmagick::thumbnailimage

(PECL gmagick >= Unknown) Changes the size of an image public Gmagick Gmagick::thumbnailimage ( int $width, int $height [, bool $fit = false ] ) Changes the size of an image to the given dimensions and removes any associated profiles. The goal is to produce small low cost thumbnail images suited for display on the Web. If TRUE is given as a third parameter then columns and rows parameters are used as maximums for each si

Gmagick::swirlimage

(PECL gmagick >= Unknown) Swirls the pixels about the center of the image public Gmagick Gmagick::swirlimage ( float $degrees ) Swirls the pixels about the center of the image, where degrees indicates the sweep of the arc through which each pixel is moved. You get a more dramatic effect as the degrees move from 1 to 360. Parameters: degrees Define the tightness of the

Gmagick::stripimage

(PECL gmagick >= Unknown) Strips an image of all profiles and comments public Gmagick Gmagick::stripimage ( void ) Strips an image of all profiles and comments. Returns: The Gmagick object on success Exception: Throws an GmagickException on error.