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


PHP ImagickDraw annotation()用法及代碼示例


ImagickDraw::annotation()函數是PHP中的內置函數,用於在圖像上繪製文本。

用法:

bool ImagickDraw::annotation( $x, $y, $text )

參數:此函數接受上述和以下所述的三個參數:


  • $x:此參數用於保存要在其中繪製文本的x坐標的值。
  • $y:此參數用於保存要繪製文本的y坐標值。
  • $text:此參數用於保存要在圖像上繪製的字符串值。

返回值:此函數不返回值。

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

示例1:

<?php 
  
// Create an ImagickDraw Object 
$draw = new ImagickDraw(); 
  
// Set Fill Color  
$draw->setFillColor('white'); 
  
// Set FOnt Size 
$draw->setFontSize(20); 
  
// Set Text 
$draw->annotation(5, 75, "Geeksforgeeks!"); 
$draw->annotation(150, 75, "sarthak_ishu11"); 
  
// Create new Imagick Object 
$imagick = new Imagick(); 
$imagick->newImage(300, 160, 'green'); 
  
// Set Image Format 
$imagick->setImageFormat("png"); 
$imagick->drawImage($draw); 
header("Content-Type: image/png"); 
  
// Display Image on Screen 
echo $imagick->getImageBlob(); 
?>

輸出:

示例2:

<?php 
  
// Create an ImagickDraw Object 
$draw = new ImagickDraw(); 
  
// Set Stroke Opacity 
$draw->setStrokeOpacity(1); 
  
// Set Stroke Color 
$draw->setStrokeColor('Black'); 
  
// Set Fill Color 
$draw->setFillColor('Green'); 
  
// Set Stroke Width 
$draw->setStrokeWidth(3); 
  
// Define the points 
$points = [ 
        ['x' => 40 * 5, 'y' => 10 * 5], 
        ['x' => 20 * 5, 'y' => 20 * 5], 
        ['x' => 70 * 5, 'y' => 50 * 5], 
        ['x' => 40 * 5, 'y' => 10 * 5] 
    ]; 
  
// Set the Font Size  
$draw->setFontSize(50);  
    
// Set the font family  
$draw->setFontFamily('Ubuntu-Mono');  
    
// Set the text to be added  
$draw->annotation(30, 40, "GeeksForGeeks");  
  
// Call Polyline Function 
$draw->polyline($points); 
  
// Create an Imagick Object 
$image = new Imagick(); 
  
// Create new Image 
$image->newImage(500, 300, 'white'); 
  
// Set Image Format 
$image->setImageFormat("png"); 
  
// Draw Image 
$image->drawImage($draw); 
  
header("Content-Type: image/png"); 
// Display the output image 
echo $image->getImageBlob(); 
?>

輸出:

參考: http://php.net/manual/en/imagickdraw.annotation.php



相關用法


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