(PECL imagick 2.0.0)
Imagick::setImageProperty — Sets an image property
$name
, string $value
)Sets a named property to the image. Această metodă este disponibilă dacă Imagick a fost compilat cu ImageMagick de versiunea 6.3.2 sau ulterior.
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');
?>
Întoarce TRUE
în caz de succes.