📜  PHP | GmagickDraw line()函数

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

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()函数:

方案一:

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

输出:

方案二:

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