PHP | imagick绘制pathCurveToQuadraticBezierSmoothRelative()函数
ImagickDraw::pathCurveToQuadraticBezierSmoothRelative()函数是PHP中的一个内置函数,用于绘制从当前点到 (x, y) 的二次贝塞尔曲线(使用相对坐标)。
句法:
bool ImagickDraw::pathCurveToQuadraticBezierSmoothRelative( float $x, float $y )
参数:该函数接受上面提到的两个参数,如下所述:
- $x:它指定结束的 x 坐标。
- $y:它指定结束 y 坐标。
返回值:此函数在成功时返回 TRUE。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::pathCurveToQuadraticBezierSmoothRelative()函数:
方案一:
newImage(800, 250, 'black');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
$draw->setFillColor('black');
// Set the stroke color
$draw->setStrokeColor('brown');
// Draw curves to Quadratic Bezier Smooth Relative (without pathClose())
$draw->pathStart();
$draw->pathCurveToQuadraticBezierSmoothRelative(950, 250);
$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('pink');
// Draw curves to Quadratic Bezier Smooth Relative (with pathClose())
$draw->pathStart();
$draw->pathCurveToQuadraticBezierSmoothRelative(3950, 250);
$draw->pathCurveToQuadraticBezierSmoothRelative(950, 250);
$draw->pathCurveToQuadraticBezierSmoothRelative(-2000, 250);
$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.pathcurvetoquadraticbeziersmoothrelative。 PHP