GmagickDraw::ellipse()函数是PHP中的内置函数,用于在图像上绘制椭圆。
用法:
GmagickDraw GmagickDraw::ellipse( float $ox, float $oy, float $rx, float $ry, float $start, float $end )
参数:该函数接受上述和以下所述的六个参数:
- $ox:它指定椭圆的x坐标。
- $oy:它指定椭圆的y坐标。
- $rx:它指定椭圆的x-radius。
- $ry:它指定椭圆的y-radius。
- $start:它指定椭圆的起点。
- $end:它指定椭圆的终点。
返回值:成功时,此函数返回GmagickDraw对象。
异常:该函数在错误时引发GmagickDrawException。
下面给出的程序说明了PHP中的GmagickDraw::ellipse()函数:程序1(简单椭圆):
<?php
// Create a new Gmagick object
// https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Set the color
$draw->setFillColor('#0E0E0E');
// Function to draw rectangle
$draw->rectangle(-10, -10, 800, 400);
// Set the fill color
$draw->setFillColor('#3D99D4');
// Set the stroke width
$draw->setStrokeWidth(5);
// Draw a ellipse
$draw->ellipse(125, 70, 100, 50, 0, 360);
// Use of drawimage function
$gmagick->drawImage($draw);
// Display the output image
header("Content-Type:image/png");
echo $gmagick->getImageBlob();
?>
输出:
程序2(椭圆形):
<?php
// Create a new Gmagick object
// https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Set the color
$draw->setFillColor('#0E0E0E');
// Function to draw rectangle
$draw->rectangle(-10, -10, 800, 400);
// Set the fill color
$draw->setFillColor('blue');
// Set the stroke color
$draw->setstrokecolor('green');
// Set the stroke width
$draw->setStrokeWidth(5);
// Draw a ellipse
$draw->ellipse(225, 70, 150, 50, 0, 360);
// Use of drawimage function
$gmagick->drawImage($draw);
// Display the output image
header("Content-Type:image/png");
echo $gmagick->getImageBlob();
?>
输出:
参考: https://www.php.net/manual/en/gmagickdraw.ellipse.php
相关用法
- PHP GmagickDraw arc()用法及代码示例
- PHP GmagickDraw getstrokeopacity()用法及代码示例
- PHP GmagickDraw getfontsize()用法及代码示例
- PHP GmagickDraw setfontsize()用法及代码示例
- PHP GmagickDraw setfillcolor()用法及代码示例
- PHP GmagickDraw rectangle()用法及代码示例
- PHP GmagickDraw setstrokewidth()用法及代码示例
- PHP GmagickDraw getstrokewidth()用法及代码示例
- PHP GmagickDraw line()用法及代码示例
- PHP GmagickDraw setstrokecolor()用法及代码示例
- PHP GmagickDraw setfillopacity()用法及代码示例
- PHP GmagickDraw settextdecoration()用法及代码示例
- PHP GmagickDraw setfontweight()用法及代码示例
- PHP GmagickDraw setfontstyle()用法及代码示例
- PHP GmagickDraw setstrokeopacity()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | GmagickDraw ellipse() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。