Imagick::displayImages

(PECL imagick 2.0.0) Displays an image or image sequence bool Imagick::displayImages ( string $servername ) Displays an image or image sequence on a X server. Parameters: servername The X server name Returns: Returns TRUE on success. Exception: Throws ImagickException on error.

Imagick::displayImage

(PECL imagick 2.0.0) Displays an image bool Imagick::displayImage ( string $servername ) This method displays an image on a X server. Parameters: servername The X server name Returns: Returns TRUE on success. Exception: Throws ImagickException on error.

Imagick::destroy

(PECL imagick 2.0.0) Destroys the Imagick object bool Imagick::destroy ( void ) Destroys the Imagick object and frees all resources associated with it. This method is deprecated in favour of Imagick::clear. Returns: Returns TRUE on success.

Imagick::despeckleImage

(PECL imagick 2.0.0) Reduces the speckle noise in an image bool Imagick::despeckleImage ( void ) Reduces the speckle noise in an image while preserving the edges of the original image. Returns: Returns TRUE on success. Exception: Throws ImagickException on error. Examples: Imagick::despeckleImage() <?

Imagick::deskewImage

(No version information available, might only be in Git) Removes skew from the image public bool Imagick::deskewImage ( float $threshold ) This method can be used to remove skew from for example scanned images where the paper was not properly placed on the scanning surface. This method is available if Imagick has been compiled against ImageMagick version 6.4.5 or newer. Parameters: th

Imagick::deleteImageProperty

(No version information available, might only be in Git) Description public void Imagick::deleteImageProperty ( string $name ) Deletes an image property. Parameters: name The name of the property to delete. Returns:

Imagick::deleteImageArtifact

(No version information available, might only be in Git) Delete image artifact bool Imagick::deleteImageArtifact ( string $artifact ) Deletes an artifact associated with the image. The difference between image properties and image artifacts is that properties are public and artifacts are private. This method is available if Imagick has been compiled against ImageMagick version 6.5.7 or newer. Parameters:

Imagick::deconstructImages

(PECL imagick 2.0.0) Returns certain pixel differences between images Imagick Imagick::deconstructImages ( void ) Compares each image with the next in a sequence and returns the maximum bounding region of any pixel differences it discovers. Returns: Returns a new Imagick object on success. Exception: Throws ImagickException on error.

Imagick::decipherImage

(No version information available, might only be in Git) Deciphers an image bool Imagick::decipherImage ( string $passphrase ) Deciphers image that has been enciphered before. The image must be enciphered using Imagick::encipherImage(). This method is available if Imagick has been compiled against ImageMagick version 6.3.9 or newer. Parameters: passphrase The passphrase

Imagick::cycleColormapImage

(PECL imagick 2.0.0) Displaces an image's colormap bool Imagick::cycleColormapImage ( int $displace ) Displaces an image's colormap by a given number of positions. If you cycle the colormap a number of times you can produce a psychedelic effect. Parameters: displace The amount to displace the colormap. Returns: Returns TRUE on success.