GmagickDraw::arc()函数是PHP中的一个内置函数,用于在图像上的指定边界矩形内绘制圆弧。
用法:
GmagickDraw GmagickDraw::arc( float $sx, float $sy, float $ex, float $ey, float $sd, float $ed )
参数:该函数接受上述和以下所述的六个参数:
- $sx:它指定矩形的起始x-ordinate。
- $sy:它指定矩形的起始y-ordinate。
- $ex:它指定矩形的结尾x-ordinate。
- $ey:它指定矩形的结尾y-ordinate。
- $sd:它指定旋转的起始角度。
- $ed:它指定旋转的结束程度。
返回值:成功时,此函数返回GmagickDraw对象。
异常:该函数在错误时引发GmagickDrawException。
下面给出的程序说明了PHP中的GmagickDraw::arc()函数:
使用的图片:
程序1(从头开始绘制弧):
的PHP
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Set the color
$draw->setFillColor('white');
// Function to draw rectangle
$draw->rectangle(0, 0, 800, 400);
// Set the fill color
$draw->setFillColor('white');
// Set the stroke color
$draw->setstrokecolor('black');
// Set the stroke width
$draw->setStrokeWidth(5);
// Mark a arc
$draw->arc(60, -60, 460, 170, 0, 200);
// Use of drawimage function
$gmagick->drawImage($draw);
// Display the output image
header("Content-Type:image/png");
echo $gmagick->getImageBlob();
?>
输出:
程序2(在图像上绘制圆弧):
的PHP
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Set the fill color
$draw->setFillColor('red');
// Set the stroke color
$draw->setstrokecolor('green');
// Set the stroke width
$draw->setStrokeWidth(5);
// Mark a arc
$draw->arc(160, -60, 360, 170, 50, 200);
// 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.arc.php
相关用法
- PHP GmagickDraw setstrokeopacity()用法及代码示例
- PHP GmagickDraw setfillcolor()用法及代码示例
- PHP GmagickDraw setstrokecolor()用法及代码示例
- PHP GmagickDraw setfillopacity()用法及代码示例
- PHP GmagickDraw scale()用法及代码示例
- PHP GmagickDraw gettextencoding()用法及代码示例
- PHP GmagickDraw gettextdecoration()用法及代码示例
- PHP GmagickDraw settextdecoration()用法及代码示例
- PHP GmagickDraw getfillcolor()用法及代码示例
- PHP GmagickDraw setfontweight()用法及代码示例
- PHP GmagickDraw setfontstyle()用法及代码示例
- PHP GmagickDraw bezier()用法及代码示例
- PHP GmagickDraw ellipse()用法及代码示例
- PHP GmagickDraw setfontsize()用法及代码示例
- PHP GmagickDraw getfillopacity()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | GmagickDraw arc() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。