Gmagick::quantizeimage

(PECL gmagick >= Unknown) Analyzes the colors within a reference image public void Gmagick::quantizeimage ( int $numColors, int $colorspace, int $treeDepth, bool $dither, bool $measureError ) Analyzes the colors within a reference image and chooses a fixed number of colors to represent the image. The goal of the algorithm is to minimize the color difference between the input and output image while minimizing the processi

Gmagick::profileimage

(PECL gmagick >= Unknown) Adds or removes a profile from an image public void Gmagick::profileimage ( string $name, string $profile ) Adds or removes a ICC, IPTC, or generic profile from an image. If the profile is NULL, it is removed from the image otherwise added. Use a name of '*' and a profile of NULL to remove all profiles from the image. Parameters: name Name of

Gmagick::previousimage

(PECL gmagick >= Unknown) Move to the previous image in the object public bool Gmagick::previousimage ( void ) Assocates the previous image in an image list with the Gmagick object. Returns: The Gmagick object on success Exception: Throws an GmagickException on error.

Gmagick::oilpaintimage

(PECL gmagick >= Unknown) Simulates an oil painting public void Gmagick::oilpaintimage ( float $radius ) Applies a special effect filter that simulates an oil painting. Each pixel is replaced by the most frequent color occurring in a circular region defined by radius. Parameters: radius The radius of the circular neighborhood. Returns: The G

Gmagick::normalizeimage

(PECL gmagick >= Unknown) Enhances the contrast of a color image public void Gmagick::normalizeimage ([ int $channel ] ) Enhances the contrast of a color image by adjusting the pixels color to span the entire range of colors available. Parameters: channel Identify which channel to normalize Returns: The Gmagick object on success

Gmagick::nextimage

(PECL gmagick >= Unknown) Moves to the next image public bool Gmagick::nextimage ( void ) Associates the next image in the image list with an Gmagick object. Returns: The Gmagick object on success Exception: Throws an GmagickException on error.

Gmagick::newimage

(PECL gmagick >= Unknown) Creates a new image public void Gmagick::newimage ( int $width, int $height, string $background [, string $format ] ) Creates a new image with the specified background color Parameters: width Width of the new image height Height of the new image background The background

Gmagick::motionblurimage

(PECL gmagick >= Unknown) Simulates motion blur public void Gmagick::motionblurimage ( float $radius, float $sigma, float $angle ) Simulates motion blur. We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, radius should be larger than sigma. Use a radius of 0 and MotionBlurImage() selects a suitable radius for you. Angle gives the angle of the blurrin

Gmagick::modulateimage

(PECL gmagick >= Unknown) Control the brightness, saturation, and hue public void Gmagick::modulateimage ( float $brightness, float $saturation, float $hue ) Lets you control the brightness, saturation, and hue of an image. Hue is the percentage of absolute rotation from the current position. For example 50 results in a counter-clockwise rotation of 90 degrees, 150 results in a clockwise rotation of 90 degrees, with 0 an

Gmagick::minifyimage

(PECL gmagick >= Unknown) Scales an image proportionally to half its size public void Gmagick::minifyimage ( void ) A convenient method that scales an image proportionally to one-half its original size Returns: The Gmagick object on success Exception: Throws an GmagickException on error.