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


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


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

用法:

bool Imagick::commentImage( $comment )

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


返回值:成功时此函数返回True。

原始图片:

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

<?php  
// require_once('vendor/autoload.php'); 
   
// Create an Imagick Object 
$image = new Imagick( 
'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:
由Imagick Function创建的图像:

<?php 
$string = "Computer Science portal for Geeks!"; 
   
// creating new image of above String 
// and add color and background 
$im = new Imagick(); 
$draw = new ImagickDraw(); 
  
// Fill the color in image 
$draw->setFillColor(new ImagickPixel('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 ImagickPixel('white')); 
           
// Draw the image          
$im->drawImage($draw); 
  
// Function to add border image 
$im->borderImage(new ImagickPixel('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/imagick.commentimage.php



相关用法


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