當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。