当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Gmagick labelimage()用法及代码示例


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

用法:

mixed Gmagick::labelimage( string $label )

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


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

异常:此函数在错误时引发GmagickException。

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

使用的图片:

程序1:

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
$label = "Hello World"; 
  
// Label the image 
$gmagick->labelimage($label); 
  
// Get the label from image 
$label = substr($gmagick, -28, strlen($label) + 1); 
echo $label; 
?>

输出:

Hello World

程序2:

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
$label = "This is my label"; 
  
// Label the image 
$gmagick->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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Gmagick labelimage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。