PHP |想象一下 labelImage()函数
Imagick::labelImage()函数是PHP中的一个内置函数,用于为图像添加标签。
句法:
bool Imagick::labelImage( string $label )
参数:此函数接受单个参数$label ,其中包含要添加到图像的标签。
返回值:此函数在成功时返回 TRUE。
错误/异常:此函数在错误时抛出 ImagickException。
下面的程序说明了PHP中的 Imagick::labelImage()函数:
程序:
labelImage("This is my label.");
// Getting the label of the image
$labelInImage = $imagick->getImageProperties("label");
// Display the label of image
echo $labelInImage['label'];
?>
输出:
This is my label.
参考: https://www. PHP.net/manual/en/imagick.labelimage。 PHP