Imagick::blueShiftImage

(No version information available, might only be in Git) Description public void Imagick::blueShiftImage ([ float $factor = 1.5 ] ) Mutes the colors of the image to simulate a scene at nighttime in the moonlight. Parameters: factor Mutes the colors of the image to simulate a scene at nighttime in the moonlight. Returns:

Imagick::blackThresholdImage

(PECL imagick 2.0.0) Forces all pixels below the threshold into black bool Imagick::blackThresholdImage ( mixed $threshold ) Is like Imagick::thresholdImage() but forces all pixels below the threshold into black while leaving all pixels above the threshold unchanged. Parameters: threshold The threshold below which everything turns black Returns:

Imagick::averageImages

(PECL imagick 2.0.0) Average a set of images Imagick Imagick::averageImages ( void ) Average a set of images. Returns: Returns a new Imagick object on success. Exception: Throws ImagickException on error.

Imagick::autoLevelImage

(No version information available, might only be in Git) Description public void Imagick::autoLevelImage ([ string $CHANNEL = Imagick::CHANNEL_DEFAULT ] ) Adjusts the levels of a particular image channel by scaling the minimum and maximum values to the full quantum range. Parameters: CHANNEL Which channel should the auto-levelling should be done on.

Imagick::appendImages

(PECL imagick 2.0.0) Append a set of images Imagick Imagick::appendImages ( bool $stack = false ) Append a set of images into one larger image. Parameters: stack Whether to stack the images vertically. By default (or if FALSE is specified) images are stacked left-to-right. If stack is TRUE, images are stacked top-to-bottom. Returns: Returns Imag

Imagick::annotateImage

(PECL imagick 2.0.0) Annotates an image with text bool Imagick::annotateImage ( ImagickDraw $draw_settings, float $x, float $y, float $angle, string $text ) Annotates an image with text. Parameters: draw_settings The ImagickDraw object that contains settings for drawing the text x Horizontal offset in pixels to the left of text

Imagick::animateImages

(No version information available, might only be in Git) Animates an image or images bool Imagick::animateImages ( string $x_server ) This method animates the image onto a local or remote X server. This method is not available on Windows. This method is available if Imagick has been compiled against ImageMagick version 6.3.6 or newer. Parameters: x_server X server address

Imagick::affineTransformImage

(PECL imagick 2.0.0) Transforms an image bool Imagick::affineTransformImage ( ImagickDraw $matrix ) Transforms an image as dictated by the affine matrix. Parameters: matrix The affine matrix Returns: Returns TRUE on success. Examples: Imagick::affineTransformImage() <

Imagick::addNoiseImage

(PECL imagick 2.0.0) Adds random noise to the image bool Imagick::addNoiseImage ( int $noise_type [, int $channel = Imagick::CHANNEL_DEFAULT ] ) Adds random noise to the image. Parameters: noise_type The type of the noise. Refer to this list of noise constants. channel Provide any channel constant that is valid for your channel mode. T

Imagick::addImage

(PECL imagick 2.0.0) Adds new image to Imagick object image list bool Imagick::addImage ( Imagick $source ) Adds new image to Imagick object from the current position of the source object. After the operation iterator position is moved at the end of the list. Parameters: source The source Imagick object Returns: Returns TRUE on success.