📜  PHP | Gmagick commentImage()函数

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

PHP | Gmagick commentImage()函数

Gmagick::commentImage()函数是PHP中的一个内置函数,用于在图像中添加注释。

句法:

Gmagick Gmagick::commentImage( $comment )

参数:此函数接受一个用于保存注释的参数$ comment。

返回值:此函数返回带有注释的 Gmagick 对象。

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

方案一:
原图:

commentImage("GeeksforGeeks");
  
// Display the comment 
echo $image->getImageProperty("comment");
  
?>

输出:

GeeksforGeeks

方案二:
由 Gmagick函数创建的图像:

setFillColor(new GmagickPixel('green'));
  
// Set the text font size
$draw->setFontSize(50);
  
$metrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($metrix['textWidth'], $metrix['textHeight'],
         new GmagickPixel('white'));
           
// Draw the image         
$im->drawImage($draw);
  
// Function to add border image
$im->borderImage(new GmagickPixel('Blue'), 5, 5);
  
// Function to add comment
$im->commentImage("G4G");
  
// Function to set the image format
$im->setImageFormat('png');
   
// Printing Added Comment 
echo $im->getImageProperty("comment");
?>

输出:

G4G

参考: http: PHP。 PHP