Imagick::labelImage()函数是PHP中的一个内置函数,用于向图像添加标签。
用法:
bool Imagick::labelImage( string $label )
参数:该函数接受单个参数$label,该参数保存要添加到图像的标签。
返回值:成功时此函数返回TRUE。
错误/异常:此函数在错误时引发ImagickException。
以下示例程序旨在说明PHP中的Imagick::labelImage()函数:
程序:
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://cdncontribute.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');
// Adding the label to the image
$imagick->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
相关用法
- PHP Gmagick labelimage()用法及代码示例
- PHP Imagick queryFonts()用法及代码示例
- PHP Imagick modulateImage()用法及代码示例
- PHP Imagick getImageInterpolateMethod()用法及代码示例
- PHP Imagick setImageInterpolateMethod()用法及代码示例
- PHP Imagick rotationalBlurImage()用法及代码示例
- PHP Imagick getImageDelay()用法及代码示例
- PHP Imagick setImageGravity()用法及代码示例
- PHP Imagick getImageGreenPrimary()用法及代码示例
- PHP Imagick getVersion()用法及代码示例
- PHP Imagick getPackageName()用法及代码示例
- PHP Imagick getImageHistogram()用法及代码示例
- PHP Imagick getQuantumRange()用法及代码示例
- PHP Imagick getInterlaceScheme()用法及代码示例
- PHP Imagick setImageGreenPrimary()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick labelImage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。