📜  PHP | GmagickDraw rectangle()函数

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

PHP | GmagickDraw rectangle()函数

GmagickDraw::rectangle()函数是PHP中的一个内置函数,用于绘制矩形。

句法:

public GmagickDraw::rectangle( $x1, $y1, $x2, $y2 )


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

  • $x1:该参数取左上角的x坐标值。
  • $y1:该参数取左上角的y坐标值。
  • $x2:该参数取右下角x坐标的值。
  • $y2:该参数取右下角的y坐标值。

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

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

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

方案一:

setFillColor('Green'); 
    
// Set the width and height of image 
$draw->setStrokeWidth(7); 
$draw->setFontSize(72); 
     
// Function to draw rectangle  
$draw->rectangle(20, 20, 380, 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('Lightgreen'); 
   
// Set the width and height of image 
$draw->setStrokeWidth(7); 
$draw->setFontSize(72); 
      
// Function to draw rectangle  
$draw->rectangle(20, 20, 880, 465);
$draw->setFontSize(40); 
$draw->setFillColor('Green');  
$gmagick = new Gmagick(); 
$gmagick->newImage(900, 500, 'White'); 
$gmagick->setImageFormat("png"); 
   
// Use of drawimage function
$gmagick->drawImage($draw); 
   
// Annotate Image
$gmagick->annotateImage($draw, 5, 120, 0,  
        '  GeeksforGeeks: A computer science portal'); 
  
$gmagick->annotateImage($draw, 5, 220, 0, 
                        '  sarthak_ishu11'); 
  
// Display the output image 
header("Content-Type: image/png"); 
echo $gmagick->getImageBlob(); 
?> 

输出:

参考: http: PHP。 PHP