PHP | imagickdraw pathCurveToQuadraticBezierAbsolute()函数
ImagickDraw::pathCurveToQuadraticBezierAbsolute()函数是PHP中的一个内置函数,用于绘制二次贝塞尔曲线,它只不过是参数二次曲线。
句法:
bool ImagickDraw::pathCurveToQuadraticBezierAbsolute( float $x1, float $y1, float $x, float $y )
参数:该函数接受上面提到的四个参数,如下所述:
- $x1:指定控制点的 x 坐标。
- $y1:指定控制点的y坐标。
- $x:指定终点的 x 坐标。
- $y:指定终点的y坐标。
返回值:此函数在成功时返回 TRUE。
下面的程序说明了PHP中的ImagickDraw::pathCurveToQuadraticBezierAbsolute()函数:
方案一:
newImage(800, 250, 'white');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
$draw->setFillColor('white');
// Set the stroke color
$draw->setStrokeColor('red');
// Draw curve to Quadratic Bezier Absolute (with pathClose())
$draw->pathStart();
$draw->pathCurveToQuadraticBezierAbsolute(150, 250, 950, 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();
?>
输出:
方案二:
newImage(800, 250, 'white');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
$draw->setFillColor('white');
// Set the stroke color
$draw->setStrokeColor('blue');
// Draw curve to Quadratic Bezier Absolute (without pathClose())
$draw->pathStart();
$draw->pathCurveToQuadraticBezierAbsolute(350, 250, 750, 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.pathcurvetoquadraticbezierabsolute。 PHP