当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。