This function only support JPEG file.
https://github.com/Imagick/imagick/issues/124#issuecomment-226942140
(PECL imagick 2, PECL imagick 3)
Imagick::commentImage — Görüntüye 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ı
Görüntüye açıklama ekleyip açıklamayı okumak:
<?php
/* Yeni bir Imagick nesnesi oluşturalım */
$im = new imagick();
/* Boş bir görüntü oluşturalım */
$im->newImage(100, 100, new ImagickPixel("red"));
/* Görüntüye bir açıklama ekleyelim */
$im->commentImage("Hello World!");
/* Açıklamayı gösterelim */
echo $im->getImageProperty("comment");
?>
This function only support JPEG file.
https://github.com/Imagick/imagick/issues/124#issuecomment-226942140