当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ImagickDraw pathEllipticArcAbsolute()用法及代码示例


ImagickDraw::pathEllipticArcAbsolute()函数是PHP中的一个内置函数,用于使用绝对坐标从当前点到(x,y)绘制椭圆弧。

用法:

bool ImagickDraw::pathEllipticArcAbsolute(
float $rx, float $ry, float $x_axis_rotation, 
bool $large_arc_flag, bool $sweep_flag, float $x, 
float $y )

参数:此函数接受上述和以下所述的七个参数:


  • $rx:它指定x-radius。
  • $ry:它指定y-radius
  • $x_axis_rotation:它指定x轴旋转
  • $large_arc_flag:它指定是否绘制较大的可用弧。
  • $sweep_flag:它指定是否绘制与顺时针旋转匹配的圆弧。
  • $x:它指定x坐标。
  • $y:它指定y坐标。

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

异常:该函数在错误时引发ImagickException。

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

程序1:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Create a image on imagick object 
$imagick->newImage(800, 250, 'green'); 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
$draw->setFillColor('blue'); 
  
// Set the stroke color 
$draw->setStrokeColor('red'); 
  
// Set the stroke width 
$draw->setStrokeWidth(15); 
  
// Draw elliptic arc 
$draw->pathStart(); 
$draw->pathEllipticArcAbsolute(420, 250, 10, true, true, 40, 40); 
$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, '#E57733'); 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Set the width of stroke 
$draw->setStrokeWidth(1); 
  
// Set the color of stroke 
$draw->setStrokeColor('#E57733'); 
  
// Set the fill color 
$draw->setFillColor('black'); 
  
// Set the fill rule 
$draw->setFillRule(Imagick::FILLRULE_NONZERO); 
  
// Draw a sunset cartoon 
$draw->pathStart(); 
$draw->pathMoveToAbsolute(0, 100); 
$draw->pathEllipticArcAbsolute(420, 400, 410, true, true, 0, 900); 
$draw->pathMoveToAbsolute(300, 250); 
$draw->pathEllipticArcAbsolute(420, 600, 410, true, true, 0, 900); 
$draw->pathClose(); 
$draw->pathFinish(); 
$draw->setFillColor('yellow'); 
$draw->translate(30, 0); 
$draw->circle(300, 100, 300, 150); 
  
// 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.pathellipticarcabsolute.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | ImagickDraw pathEllipticArcAbsolute() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。