📜  PHP | imagickdraw ellipse()函数

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

PHP | imagickdraw ellipse()函数

ImagickDraw::ellipse()函数是PHP中的一个内置函数,用于在图像上绘制椭圆。

句法:

bool ImagickDraw::ellipse( float $ox, float $oy, 
float $rx, float $ry, float $start, float $end )

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

  • $ox:指定椭圆的 x 坐标。
  • $oy:它指定椭圆的 y 坐标。
  • $rx:它指定椭圆的 x 半径。
  • $ry:它指定椭圆的 y 半径。
  • $start:指定椭圆的起点。
  • $end:指定椭圆的终点。

返回值:此函数在成功时返回 TRUE。

异常:此函数在出错时抛出 ImagickException。

下面给出的程序说明了PHP中的ImagickDraw::ellipse()函数

方案一:

newImage(800, 250, 'purple');
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Draw a ellipse
$draw->ellipse(125, 70, 100, 50, 0, 360);
  
// Render the draw commands
$imagick->drawImage($draw);
  
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>

输出:

方案二:

newImage(800, 250, 'brown');
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Draw a black ellipse
$draw->ellipse(400, 120, 200, 100, 0, 360);
  
// Set the FillColor to green
$draw->setFillColor('green');
  
// Draw a green ellipse
$draw->ellipse(400, 120, 150, 90, 0, 360);
  
// Render the draw commands
$imagick->drawImage($draw);
  
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>

输出:

参考: https://www. PHP.net/manual/en/imagickdraw.ellipse。 PHP