The Imagick class
PHP Manual

Imagick::commentImage

(No version information available, might be only in CVS)

Imagick::commentImageAdds a comment to your image

Описание

bool Imagick::commentImage ( string $comment )
Внимание

К настоящему времени эта функция еще не была документирована; для ознакомления доступен только список аргументов.

Adds a comment to your image.

Список параметров

comment

The comment to add

Возвращаемые значения

Returns TRUE on success.

Errors/Exceptions

Throws ImagickException on error.

Примеры

Пример #1 Using Imagick::commentImage():

Commenting an image and retrieving the comment:

<?php

/* Create new Imagick object */
$im = new imagick();

/* Create an empty image */
$im->newImage(100100, new ImagickPixel("red"));

/* Add comment to the image */
$im->commentImage("Hello World!");

/* Display the comment */
echo $im->getImageProperty("comment");

?>


The Imagick class
PHP Manual