Imagick::writeImagesFile

(No version information available, might only be in Git) Writes frames to a filehandle bool Imagick::writeImagesFile ( resource $filehandle ) Writes all image frames into an open filehandle. This method can be used to write animated gifs or other multiframe images into open filehandle. This method is available if Imagick has been compiled against ImageMagick version 6.3.6 or newer. Parameters:

Imagick::writeImages

(PECL imagick 0.9.0-0.9.9) Writes an image or image sequence bool Imagick::writeImages ( string $filename, bool $adjoin ) Writes an image or image sequence. Parameters: filename Writes an image or image sequence. adjoin Writes an image or image sequence. Returns: Returns TRUE on success.

Imagick::writeImageFile

(No version information available, might only be in Git) Writes an image to a filehandle bool Imagick::writeImageFile ( resource $filehandle ) Writes the image sequence to an open filehandle. The handle must be opened with for example fopen. This method is available if Imagick has been compiled against ImageMagick version 6.3.6 or newer. Parameters: filehandle Filehandle

Imagick::writeImage

(PECL imagick 0.9.0-0.9.9) Writes an image to the specified filename bool Imagick::writeImage ([ string $filename = NULL ] ) Writes an image to the specified filename. If the filename parameter is NULL, the image is written to the filename set by Imagick::readImage() or Imagick::setImageFilename(). Parameters: filename Filename where to write the image. The extension of

Imagick::whiteThresholdImage

(PECL imagick 2.0.0) Force all pixels above the threshold into white bool Imagick::whiteThresholdImage ( mixed $threshold ) Is like Imagick::ThresholdImage() but force all pixels above the threshold into white while leaving all pixels below the threshold unchanged. Parameters: threshold Is like Imagick::ThresholdImage() but force all pixels above the threshold into white

Imagick::waveImage

(PECL imagick 2.0.0) Applies wave filter to the image bool Imagick::waveImage ( float $amplitude, float $length ) Applies a wave filter to the image. This method is available if Imagick has been compiled against ImageMagick version 6.2.9 or newer. Parameters: amplitude The amplitude of the wave. length The length of the wave.

Imagick::vignetteImage

(PECL imagick 2.0.0) Adds vignette filter to the image bool Imagick::vignetteImage ( float $blackPoint, float $whitePoint, int $x, int $y ) Softens the edges of the image in vignette style. This method is available if Imagick has been compiled against ImageMagick version 6.2.9 or newer. Parameters: blackPoint The black point. whitePoint

Imagick::valid

(PECL imagick 2.0.0) Checks if the current item is valid bool Imagick::valid ( void ) Checks if the current item is valid. Returns: Returns TRUE on success.

Imagick::unsharpMaskImage

(PECL imagick 2.0.0) Sharpens an image bool Imagick::unsharpMaskImage ( float $radius, float $sigma, float $amount, float $threshold [, int $channel = Imagick::CHANNEL_ALL ] ) Sharpens an image. 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 Imagick::UnsharpMaskImage() selects a suitable radi

Imagick::uniqueImageColors

(PECL imagick 2.0.0) Discards all but one of any pixel color bool Imagick::uniqueImageColors ( void ) Discards all but one of any pixel color. This method is available if Imagick has been compiled against ImageMagick version 6.2.9 or newer. Returns: Returns TRUE on success. Examples: Imagick::uniqueImageColors() <?php