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


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