📜  PHP | ImagickDraw pathCurveToSmoothAbsolute()函数

📅  最后修改于: 2022-05-13 01:57:40.130000             🧑  作者: Mango

PHP | ImagickDraw pathCurveToSmoothAbsolute()函数

ImagickDraw::pathCurveToSmoothAbsolute()函数是PHP的一个内置函数,用于使用绝对坐标绘制从当前点到 (x, y) 的三次贝塞尔曲线。

句法:

bool ImagickDraw::pathCurveToSmoothAbsolute
( float $x2, float $y2, float $x, float $y )

参数:该函数接受上面提到和下面描述的四个参数:

  • $x2:它指定第二个控制点的 x 坐标。
  • $y2:它指定第二个控制点的 y 坐标。
  • $x:指定终点的x坐标。
  • $y:指定终点的y坐标。

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

异常:此函数在出错时抛出 ImagickException。



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

方案一:

newImage(800, 250, 'black');
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
$draw->setFillColor('blue');
  
// Set the stroke color
$draw->setStrokeColor('white');
  
// Draw curves to Quadratic Bezier Relative (with pathClose())
$draw->pathStart();
$draw->pathCurveToSmoothAbsolute(50, 250, 1900, 20);
$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();
?>

输出:

方案二:

newImage(800, 250, 'black');
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
$draw->setFillColor('blue');
  
// Set the stroke color
$draw->setStrokeColor('white');
  
// Draw curves to Quadratic Bezier Relative (without pathClose())
$draw->pathStart();
$draw->pathCurveToSmoothAbsolute(150, 250, 800, 250);
$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.pathcurvetosmoothabsolute。 PHP