Imagick::setImageProperty

(PECL imagick 2, PECL imagick 3)

Imagick::setImagePropertyConfigura una propiedad de imagen

Descripción

public Imagick::setImageProperty(string $name, string $value): bool

Configura la propiedad de imagen name al valor value. Este método está disponible si Imagick ha sido compilado con la versión 6.3.2 o superior de ImageMagick.

Parámetros

name

value

Valores devueltos

Devuelve true en caso de éxito.

Ejemplos

Ejemplo #1 Ejemplo con Imagick::setImageProperty()

Define y recupera las propiedades de una imagen.

<?php
$image
= new Imagick();
$image->newImage(300, 200, "black");

$image->setImageProperty('Exif:Make', 'Imagick');
echo
$image->getImageProperty('Exif:Make');
?>

Ver también

add a note

User Contributed Notes 1 note

up
8
Jocke Selin
6 years ago
Please be aware that only 'comment' values are written to the file if it's a JPEG. This means that any other data, such as GPS data or Exif data can be 'modified' but will not be written to the file. This might change in the future, but it hasn't change in 2 years.

For reference.
https://github.com/mkoppanen/imagick/issues/124
https://github.com/ImageMagick/ImageMagick/issues/55
To Top