Imagick::optimizeImageLayers

(PECL imagick 2.0.0) Removes repeated portions of images to optimize bool Imagick::optimizeImageLayers ( void ) Compares each image the GIF disposed forms of the previous image in the sequence. From this it attempts to select the smallest cropped image to replace each frame, while preserving the results of the animation. This method is available if Imagick has been compiled against ImageMagick version 6.2.9 or newer.

Imagick::opaquePaintImage

(No version information available, might only be in Git) Changes the color value of any pixel that matches target bool Imagick::opaquePaintImage ( mixed $target, mixed $fill, float $fuzz, bool $invert [, int $channel = Imagick::CHANNEL_DEFAULT ] ) Changes any pixel that matches color with the color defined by fill. This method is available if Imagick has been compiled against ImageMagick version 6.3.8 or newer.

Imagick::oilPaintImage

(PECL imagick 2.0.0) Simulates an oil painting bool Imagick::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: Returns TRUE on succes

Imagick::normalizeImage

(PECL imagick 2.0.0) Enhances the contrast of a color image bool Imagick::normalizeImage ([ int $channel = Imagick::CHANNEL_ALL ] ) Enhances the contrast of a color image by adjusting the pixels color to span the entire range of colors available. Parameters: channel Provide any channel constant that is valid for your channel mode. To apply to more than one channel, combi

Imagick::nextImage

(PECL imagick 2.0.0) Moves to the next image bool Imagick::nextImage ( void ) Associates the next image in the image list with an Imagick object. Returns: Returns TRUE on success.

Imagick::newPseudoImage

(PECL imagick 2.0.0) Creates a new image bool Imagick::newPseudoImage ( int $columns, int $rows, string $pseudoString ) Creates a new image using ImageMagick pseudo-formats. Parameters: columns columns in the new image rows rows in the new image pseudoString string containing pseudo image definition.

Imagick::newImage

(PECL imagick 2.0.0) Creates a new image bool Imagick::newImage ( int $cols, int $rows, mixed $background [, string $format ] ) Creates a new image and associates ImagickPixel value as background color Parameters: cols Columns in the new image rows Rows in the new image background The background color

Imagick::negateImage

(PECL imagick 2.0.0) Negates the colors in the reference image bool Imagick::negateImage ( bool $gray [, int $channel = Imagick::CHANNEL_ALL ] ) Negates the colors in the reference image. The Grayscale option means that only grayscale values within the image are negated. Parameters: gray Whether to only negate grayscale pixels within the image. cha

Imagick::motionBlurImage

(PECL imagick 2.0.0) Simulates motion blur bool Imagick::motionBlurImage ( float $radius, float $sigma, float $angle [, int $channel = Imagick::CHANNEL_DEFAULT ] ) 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

Imagick::mosaicImages

(PECL imagick 2.0.0) Forms a mosaic from images Imagick Imagick::mosaicImages ( void ) Inlays an image sequence to form a single coherent picture. It returns a wand with each image in the sequence composited at the location defined by the page offset of the image. Returns: Returns TRUE on success.