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


PHP Imagick annotateImage()用法及代碼示例


Imagick::annotateImage()函數是PHP中的內置函數,用於用文本注釋圖像。成功時此函數返回True。

用法:

bool Imagick::annotateImage( $draw_settings, $x, $y, $angle, $text )

參數:該函數接受上述和以下所述的五個參數:


  • $draw_settings:此參數用於創建一個ImagickDraw對象,該對象包含用於繪製文本的設置。
  • $x:此參數設置為文本左側的水平偏移量(以像素為單位)。
  • $y:此參數設置為相對於文本基線的垂直偏移(以像素為單位)。
  • $angle:書寫文字的角度。
  • $text:需要繪製的字符串。

返回值:成功時此函數返回True。

以下示例程序旨在說明PHP中的Imagick::annotateImage()函數:

程序1:

<?php 
/* Create some objects */
$image = new Imagick(); 
$draw = new ImagickDraw(); 
$pixel = new ImagickPixel('white'); 
  
/* New image */
$image->newImage(800, 300, $pixel); 
  
/* Black text */
$draw->setFillColor('green'); 
  
/* Font properties */
$draw->setFont('Bookman-DemiItalic'); 
$draw->setFontSize( 30 ); 
  
/* Create text */
$image->annotateImage($draw, 30, 140, 0,  
   'GeeksforGeeks: A computer science portal'); 
  
/* Give image a format */
$image->setImageFormat('png'); 
  
/* Output the image with headers */
header('Content-type: image/png'); 
echo $image; 
  
?>

輸出:
annonate Image

程序2:

<?php 
  
/* Create some objects */
$image = new Imagick(); 
$draw = new ImagickDraw(); 
$image = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); 
   
/* Black text */
$draw->setFillColor('green'); 
   
/* Font properties */
$draw->setFont('Bookman-DemiItalic'); 
$draw->setFontSize( 30 ); 
   
/* Create text */
$image->annotateImage($draw, 5, 120, 0,  
   'GeeksforGeeks: A computer science portal'); 
   
/* Give image a format */
$image->setImageFormat('png'); 
   
/* Output the image with headers */
header('Content-type: image/png'); 
echo $image; 
   
?>

輸出:
annonate image

相關文章:

參考: http://php.net/manual/en/imagick.annotateimage.php



相關用法


注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | Imagick annotateImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。