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


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


GmagickDraw::point()函數是PHP中的一個內置函數,用於繪製點。此函數使用指定坐標處的當前筆觸顏色和筆觸粗細。

用法:

public GmagickDraw::point( $x, $y )


參數:該函數接受上述和以下描述的兩個參數:


  • $x:此參數采用x坐標的值。
  • $y:此參數采用y坐標的值。

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

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

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

程序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);  
     
// Use loop to draw 10000 points in given area  
  
for ($x = 0; $x < 10000; $x++) {  
    $draw->point(rand(0, 500), rand(0, 500));  
}  
   
$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 ImagickDraw();   
     
// Set the color 
   
// Set the width and height of image  
$draw->setStrokeWidth(7000);  
$draw->setFontSize(72);  
      
// Function to draw point   
for ($x = 0; $x < 10000; $x++) {  
$draw->setFillColor('green');  
    $draw->point(rand(0, 900), rand(0, 500));  
}  
    
$draw->setFontSize(40);  
    
$gmagick = new Imagick();  
$gmagick->newImage(900, 500, 'White');  
$gmagick->setImageFormat("png");  
   
// Annotate image 
$gmagick->annotateImage($draw, 5, 120, 0,  
        'GeeksforGeeks: A computer science portal');  
  
$gmagick->annotateImage($draw, 5, 220, 0, 
                        'sarthak_ishu11');  
  
// Use of drawimage function 
$gmagick->drawImage($draw);  
   
// Display the output image  
header("Content-Type: image/png");  
echo $gmagick->getImageBlob();  
?> 

輸出:

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



相關用法


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