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


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


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

用法:

Gmagick Gmagick::commentImage( $comment )

参数:该函数接受单个参数$comment,该参数用于保存注释。


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

以下示例程序旨在说明PHP中的Gmagick::commentImage()函数:

程序1:
原始图片:

<?php  
// require_once('vendor/autoload.php'); 
   
// Create an Gmagick Object 
$image = new Gmagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png'); 
   
// Add comment to the image  
$image->commentImage("GeeksforGeeks"); 
  
// Display the comment  
echo $image->getImageProperty("comment"); 
  
?>

输出:

GeeksforGeeks

程序2:
图片由Gmagick Function创建:

<?php 
$string = "Computer Science portal for Geeks!"; 
   
// creating new image of above String 
// and add color and background 
$im = new Gmagick(); 
$draw = new GmagickDraw(); 
  
// Fill the color in image 
$draw->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.net/manual/en/gmagick.commentimage.php



相关用法


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