Imagick::commentImage

(PECL imagick 2, PECL imagick 3)

Imagick::commentImage为您的图像添加注释

说明

public Imagick::commentImage(string $comment): bool

为您的图像添加注释。

参数

comment

要添加的注释

返回值

成功时返回 true

错误/异常

发生错误时抛出 ImagickException。

示例

示例 #1 使用 Imagick::commentImage()

对图像进行注释并检索注释

<?php

/* 创建新的 Imagick 对象 */
$im = new imagick();

/* 创建一个空图像 */
$im->newImage(100, 100, new ImagickPixel("red"));

/* 向图像添加注释 */
$im->commentImage("Hello World!");

/* 显示注释 */
echo $im->getImageProperty("comment");

?>

添加注释

用户贡献的注释 1 条注释

To Top