(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 version 6.3.2 or newer.
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.
Returns:
Returns TRUE
on success.
Examples:
Using Imagick::setImageProperty() :
Setting and getting image properties
1 2 3 4 5 6 7 | <?php $image = new Imagick(); $image ->newImage(300, 200, "black" ); $image ->setImageProperty( 'Exif:Make' , 'Imagick' ); echo $image ->getImageProperty( 'Exif:Make' ); ?> |
See also:
Please login to continue.