Imagick::current

(PECL imagick 2.0.0) Returns a reference to the current Imagick object Imagick Imagick::current ( void ) Returns reference to the current imagick object with image pointer at the correct sequence. Returns: Returns self on success. Exception: Throws ImagickException on error.

Imagick::cropThumbnailImage

(PECL imagick 2.0.0) Creates a crop thumbnail bool Imagick::cropThumbnailImage ( int $width, int $height ) Creates a fixed size thumbnail by first scaling the image up or down and cropping a specified area from the center. Parameters: width The width of the thumbnail height The Height of the thumbnail Returns:

Imagick::cropImage

(PECL imagick 2.0.0) Extracts a region of the image bool Imagick::cropImage ( int $width, int $height, int $x, int $y ) Extracts a region of the image. Parameters: width The width of the crop height The height of the crop x The X coordinate of the cropped region's top left corner

Imagick::count

(No version information available, might only be in Git) Description public void Imagick::count ([ string $mode ] ) Returns the number of images. Parameters: mode An unused argument. Currently there is a non-particularly well defined feature in PHP where calling count() on a countable object might (or might not) require this method to accept a parameter. This parameter i

Imagick::convolveImage

(PECL imagick 2.0.0) Applies a custom convolution kernel to the image bool Imagick::convolveImage ( array $kernel [, int $channel = Imagick::CHANNEL_ALL ] ) Applies a custom convolution kernel to the image. Parameters: kernel The convolution kernel channel Provide any channel constant that is valid for your channel mode. To apply to mo

Imagick::contrastStretchImage

(PECL imagick 2.0.0) Enhances the contrast of a color image bool Imagick::contrastStretchImage ( float $black_point, float $white_point [, 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. This method is available if Imagick has been compiled against ImageMagick version 6.2.9 or newer. Parameters:

Imagick::contrastImage

(PECL imagick 2.0.0) Change the contrast of the image bool Imagick::contrastImage ( bool $sharpen ) Enhances the intensity differences between the lighter and darker elements of the image. Set sharpen to a value other than 0 to increase the image contrast otherwise the contrast is reduced. Parameters: sharpen The sharpen value Returns: Returns TR

Imagick::__construct

(PECL imagick 2.0.0) The Imagick constructor Imagick::__construct ( mixed $files ) Creates an Imagick instance for a specified image or set of images. Parameters: files The path to an image to load or an array of paths. Paths can include wildcards for file names, or can be URLs. Returns: Returns a new Imagick object on success.

Imagick::compositeImage

(PECL imagick 2.0.0) Composite one image onto another bool Imagick::compositeImage ( Imagick $composite_object, int $composite, int $x, int $y [, int $channel = Imagick::CHANNEL_ALL ] ) Composite one image onto another at the specified offset. Any extra arguments needed for the compose algorithm should passed to setImageArtifact with 'compose:args' as the first parameter and the data as the second parameter.

Imagick::compareImages

(PECL imagick 2.0.0) Compares an image to a reconstructed image array Imagick::compareImages ( Imagick $compare, int $metric ) Returns an array containing a reconstructed image and the difference between images. Parameters: compare An image to compare to. metric Provide a valid metric type constant. Refer to this list of metric constant