📜  PHP | Gmagick labelimage()函数

📅  最后修改于: 2022-05-13 01:56:45.794000             🧑  作者: Mango

PHP | Gmagick labelimage()函数

Gmagick::labelimage()函数是PHP中的一个内置函数,用于标记图像。标签只是附加到图像的字符串,稍后可以从图像中提取回来。此标签在图像本身上不可见,但您可以使用注释函数这样做。

句法:

mixed Gmagick::labelimage( string $label )

参数:此函数接受单个参数$label ,它保存图像的标签。

返回值:此函数返回带有标签的 Gmagick 对象。

异常:此函数在错误时抛出 GmagickException。

下面给出的程序说明了PHP中的Gmagick::labelimage()函数

使用图像:

方案一:

labelimage($label);
  
// Get the label from image
$label = substr($gmagick, -28, strlen($label) + 1);
echo $label;
?>

输出:

Hello World

方案二:

labelimage($label);
  
// Get the label from image
$getlabel = substr($gmagick, -32, strlen($label));
   
// Create a GmagickDraw object
$draw = new GmagickDraw();
   
// Set the color
$draw->setFillColor('white');
   
// Function to draw rectangle
$draw->rectangle(0, 0, 800, 400);
   
// Set the fill color
$draw->setFillColor('orange');
   
// Set the font size
$draw->setfontsize(50);
   
// Annotate a text
$draw->annotate(30, 100, $getlabel);
   
// Use of drawimage function
$gmagick->drawImage($draw);
   
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

参考: https://www. PHP.net/manual/en/gmagick.labelimage。 PHP