Imagick::setImageRenderingIntent

(PECL imagick 2.0.0) Sets the image rendering intent bool Imagick::setImageRenderingIntent ( int $rendering_intent ) Sets the image rendering intent. Parameters: rendering_intent Sets the image rendering intent. Returns: Returns TRUE on success. Exception: Throws ImagickException on error.

Imagick::setImageRedPrimary

(PECL imagick 2.0.0) Sets the image chromaticity red primary point bool Imagick::setImageRedPrimary ( float $x, float $y ) Sets the image chromaticity red primary point. Parameters: x Sets the image chromaticity red primary point. y Sets the image chromaticity red primary point. Returns: Returns TRUE on success

Imagick::setImageProperty

(PECL imagick 2.0.0) Sets an image property bool Imagick::setImageProperty ( string $name, string $value ) Sets a named property to the image. This method is available if Imagick has been compiled against ImageMagick version 6.3.2 or newer. Parameters: name Sets a named property to the image. This method is available if Imagick has been compiled against ImageMagick versio

Imagick::setImageProfile

(PECL imagick 2.0.0) Adds a named profile to the Imagick object bool Imagick::setImageProfile ( string $name, string $profile ) Adds a named profile to the Imagick object. If a profile with the same name already exists, it is replaced. This method differs from the Imagick::ProfileImage() method in that it does not apply any CMS color profiles. Parameters: name Adds a name

Imagick::setImagePage

(PECL imagick 2.0.0) Sets the page geometry of the image bool Imagick::setImagePage ( int $width, int $height, int $x, int $y ) Sets the page geometry of the image. Parameters: width Sets the page geometry of the image. height Sets the page geometry of the image. x Sets the page geometry of the image.

Imagick::setImageOrientation

(PECL imagick 2.0.0) Sets the image orientation bool Imagick::setImageOrientation ( int $orientation ) Sets the image orientation. Parameters: orientation One of the orientation constants Returns: Returns TRUE on success. Examples: Imagick::setImageOrientation() <?php

Imagick::setImageOpacity

(PECL imagick 2.0.0) Sets the image opacity level bool Imagick::setImageOpacity ( float $opacity ) Sets the image to the specified opacity level. This method is available if Imagick has been compiled against ImageMagick version 6.3.1 or newer. This method operates on all channels, which means that for example opacity value of 0.5 will set all transparent areas to partially opaque. To add transparency to areas that are not al

Imagick::setImageMatteColor

(PECL imagick 2.0.0) Sets the image matte color bool Imagick::setImageMatteColor ( mixed $matte ) Sets the image matte color. Parameters: matte Sets the image matte color. Returns: Returns TRUE on success. Exception: Throws ImagickException on error. Changelog: 2.1.0 Now a

Imagick::setImageMatte

(PECL imagick 2.0.0) Sets the image matte channel bool Imagick::setImageMatte ( bool $matte ) Sets the image matte channel. This method is available if Imagick has been compiled against ImageMagick version 6.2.9 or newer. Parameters: matte True activates the matte channel and false disables it. Returns: Returns TRUE on success.

Imagick::setImageIterations

(PECL imagick 2.0.0) Sets the image iterations bool Imagick::setImageIterations ( int $iterations ) Sets the number of iterations an animated image is repeated. Parameters: iterations The number of iterations the image should loop over. Set to '0' to loop continuously. Returns: Returns TRUE on success. Exception: