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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。