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


PHP GmagickDraw line()用法及代碼示例


GmagickDraw::line()函數是PHP中的一個內置函數,用於繪製線條。此函數使用當前筆觸顏色,筆觸不透明度和筆觸寬度繪製線條。

用法:

public GmagickDraw::line( $sx, $sy, $ex, $ey )


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


  • $sx:此參數采用起始x坐標的值。
  • $sy:此參數采用起始y坐標的值。
  • $ex:此參數采用x坐標的結束值。
  • $ex:他的參數采用y坐標結尾的值。

返回值:成功時,此函數返回GmagickDraw對象。

錯誤/異常:此函數在出錯時引發GmagickException。

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

程序1:

<?php  
     
// Create a GmagickDraw object  
$draw = new GmagickDraw();   
    
// Set the color 
$draw->setFillColor('Green');  
    
// Set the width and height of image  
$draw->setStrokeWidth(1170);  
$draw->setFontSize(72);  
     
// Function to draw line 
$draw->line(20, 20, 280, 465); 
   
$gmagick = new Gmagick();  
$gmagick->newImage(500, 500, 'White');  
$gmagick->setImageFormat("png");  
  
// Use of drawimage function 
$gmagick->drawImage($draw);  
   
// Display the output image  
header("Content-Type: image/png");  
echo $gmagick->getImageBlob();  
?> 

輸出:

程序2:

<?php  
      
// Create a GmagickDraw object  
$draw = new GmagickDraw();   
     
// Set the color 
$draw->setFillColor('Green');  
     
// Set the width and height of image  
$draw->setStrokeWidth(1);  
   
      
// Function to draw line 
for($x = 0; $x < 40; $x++) { 
    $draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500)); 
    $draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500)); 
    $draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500)); 
    $draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500)); 
} 
  
$gmagick = new Gmagick();  
$gmagick->newImage(500, 500, 'White');  
$gmagick->setImageFormat("png");  
   
// Set the color 
$draw->setFillColor('Black');  
$draw->setFontSize(25);  
   
// Use of drawimage function 
$gmagick->drawImage($draw);  
  
$gmagick->annotateImage($draw, 5, 120, 0,  
        'GeeksforGeeks: A computer science portal');  
  
// Display the output image  
header("Content-Type: image/png");  
echo $gmagick->getImageBlob();  
  
?> 

輸出:

參考: http://php.net/manual/en/gmagickdraw.line.php



相關用法


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