📜  PHP | imagickdraw pathCurveToRelative()函数

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

PHP | imagickdraw pathCurveToRelative()函数

ImagickDraw::pathCurveToRelative()函数是PHP中的一个内置函数,用于使用 (x1, y1) 作为曲线开始处的控制点从当前点到 (x, y) 绘制三次贝塞尔曲线, (x2, y2) 使用相对坐标作为曲线末端的控制点。

句法:

bool ImagickDraw::pathCurveToRelative( 
float $x1, float $y1, float 
$x2, float $y2, float $x, float $y )

参数:此函数接受上面提到的六个参数,如下所述:

  • $x1:指定起始控制点的x坐标。
  • $y1:指定起始控制点的y坐标。
  • $x2:指定结束控制点的x坐标。
  • $y2:指定结束控制点的y坐标。
  • $x:它指定结束的 x 坐标。
  • $y:它指定结束 y 坐标。

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

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

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

方案一:

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

输出:

参考: https://www. PHP.net/manual/en/imagickdraw.pathcurvetorelative。 PHP