ImagickDraw::pathEllipticArcRelative()函数是PHP中的一个内置函数,用于使用相对坐标从当前点到(x,y)绘制椭圆弧。
用法:
bool ImagickDraw::pathEllipticArcRelative( float $rx, float $ry, float $x_axis_rotation, bool $large_arc_flag, bool $sweep_flag, float $x )
参数:此函数接受上述和以下所述的七个参数:
- $rx:它指定x-radius。
- $ry:它指定y-radius
- $x_axis_rotation:它指定x轴旋转
- $large_arc_flag:它指定是否绘制较大的可用弧。
- $sweep_flag:它指定是否绘制与顺时针旋转匹配的圆弧。
- $x:它指定x坐标。
- $y:它指定y坐标。
返回值:成功时此函数返回TRUE。
异常:该函数在错误时引发ImagickException。
以下示例程序旨在说明PHP中的ImagickDraw::pathEllipticArcRelative()函数:
程序1:
<?php
// Create a new imagick object
$imagick = new Imagick();
// Create a image on imagick object
$imagick->newImage(800, 250, '#7441e0');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
$draw->setFillColor('#2fceeb');
// Set the stroke color
$draw->setStrokeColor('#c27230');
// Set the stroke width
$draw->setStrokeWidth(15);
// Draw elliptic arc
$draw->pathStart();
$draw->pathEllipticArcRelative(120, 9250,
210, false, true, 300, 400);
$draw->pathClose();
$draw->pathFinish();
// Render the draw commands
$imagick->drawImage($draw);
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>
输出:
程序2:
<?php
// Create a new imagick object
$imagick = new Imagick();
// Create a image on imagick object
$imagick->newImage(800, 250, '#7441e0');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
$draw->setFillColor('#2fceeb');
// Set the stroke color
$draw->setStrokeColor('#c27230');
// Set the stroke width
$draw->setStrokeWidth(15);
// Draw elliptic arc
$draw->pathStart();
$draw->pathEllipticArcRelative(120,
50, 10, true, true, 300, 400);
$draw->pathFinish();
// 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.pathellipticarcrelative.php
相关用法
- PHP ImagickDraw arc()用法及代码示例
- PHP ImagickDraw pop()用法及代码示例
- PHP ImagickDraw clone()用法及代码示例
- PHP ImagickDraw setTextInterlineSpacing()用法及代码示例
- PHP ImagickDraw getFont()用法及代码示例
- PHP ImagickDraw pathCurveToQuadraticBezierRelative()用法及代码示例
- PHP ImagickDraw setFillAlpha()用法及代码示例
- PHP ImagickDraw setStrokeMiterLimit()用法及代码示例
- PHP ImagickDraw getTextInterwordSpacing()用法及代码示例
- PHP ImagickDraw setFillOpacity()用法及代码示例
- PHP ImagickDraw getTextEncoding()用法及代码示例
- PHP ImagickDraw setTextEncoding()用法及代码示例
- PHP ImagickDraw comment()用法及代码示例
- PHP ImagickDraw polygon()用法及代码示例
- PHP ImagickDraw roundRectangle()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | ImagickDraw pathEllipticArcRelative() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。