📜  PHP | GmagickDraw roundrectangle()函数

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

PHP | GmagickDraw roundrectangle()函数

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

句法:

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


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

  • $x1:该参数取左上角的x坐标值。
  • $y1:该参数取左上角的y坐标值。
  • $x2:该参数取右下角x坐标的值。
  • $y2:该参数取右下角的y坐标值。
  • $ry:该参数取垂直方向角的半径值。
  • $rx:该参数取水平方向角的半径值。

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

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

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

方案一:

setFillColor('Green'); 
    
// Set the width and height of image 
$draw->setStrokeWidth(7); 
$draw->setFontSize(72); 
     
// Function to draw roundrectangle  
$draw->roundrectangle(20, 20, 380, 465, 50, 50);
   
$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 roundrectangle  
$draw->roundrectangle(20, 20, 880, 465, 50, 50);
$draw->setFontSize(40); 
$draw->setFillColor('Green');  
$gmagick = new Imagick(); 
$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