📜  PHP | GmagickDraw point()函数

📅  最后修改于: 2022-05-13 01:56:35.180000             🧑  作者: Mango

PHP | GmagickDraw point()函数

GmagickDraw::point()函数是PHP中的一个内置函数,用于绘制一个点。此函数使用指定坐标处的当前笔划颜色和笔划粗细。

句法:

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


参数:该函数接受上面提到的两个参数,如下所述:

  • $x:这个参数取x坐标的值。
  • $y:这个参数取y坐标的值。

返回值:此函数在成功时返回 GmagickDraw 对象。

错误/异常:此函数在错误时抛出 GmagickException。

下面的程序说明了PHP中的GmagickDraw::point()函数:

方案一:

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(); 
?> 

输出:

方案二:

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。 PHP