(PECL imagick 2.0.0)
Imagick::commentImage — Resme bir açıklama ekler
$açıklama
) : boolResme bir açıklama ekler.
açıklama
Eklenecek açıklama dizgesi.
Başarı durumunda TRUE
döner.
Hata durumunda bir ImagickException istisnası oluşur.
Örnek 1 - Imagick::commentImage() kullanımı
Resme açıklama ekleyip açıklamayı okumak:
<?php
/* Yeni bir Imagick nesnesi oluşturalım */
$im = new imagick();
/* Boş bir resim oluşturalım */
$im->newImage(100, 100, new ImagickPixel("red"));
/* Resme bir açıklama ekleyelim */
$im->commentImage("Hello World!");
/* Açıklamayı gösterelim */
echo $im->getImageProperty("comment");
?>