(PECL imagick 2.0.0)
Imagick::setImageProperty — Sets an image property
$name
, string $value
)Sets a named property to the image. Questo metodo è disponibile se Imagick è stato compilato con ImageMagick versione 6.3.2 o successive.
name
value
Example #1 Using Imagick::setImageProperty():
Setting and getting image properties
<?php
$image = new Imagick();
$image->newImage(300, 200, "black");
$image->setImageProperty('Exif:Make', 'Imagick');
echo $image->getImageProperty('Exif:Make');
?>
Restituisce TRUE
in caso di successo.