ImagickDraw::pathCurveToAbsolute()函数是PHP中的内置函数,用于绘制三次贝塞尔曲线(参数曲线)。此函数使用起始控制点(x1,y1)到结束控制点(x2,y2)从当前点到(x,y)绘制一条曲线。在最后一个命令中,新的当前点成为多贝塞尔曲线中使用的最终(x,y)坐标对。
用法:
bool ImagickDraw::pathCurveToAbsolute( 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。
以下示例程序旨在说明PHP中的ImagickDraw::pathCurveToAbsolute()函数:
示例1:
<?php
// Create a new imagick object
$imagick = new Imagick();
// Create a image on imagick object
$imagick->newImage(800, 250, 'white');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
$draw->setFillColor('white');
// Set the stroke color
$draw->setStrokeColor('green');
// Set the stroke width
$draw->setStrokeWidth(5);
// Start a path
$draw->pathStart();
$draw->pathCurveToAbsolute(50, 100, 180, 200, 1360, 200);
$draw->pathFinish();
// Set the stroke color
$draw->setStrokeColor('red');
// Draw curve to absolute (with pathClose())
$draw->pathStart();
$draw->pathCurveToAbsolute(500, 20, 80, 40, 60, 900);
$draw->pathClose();
$draw->pathFinish();
// Set the stroke color
$draw->setStrokeColor('blue');
// Draw curve to absolute (with pathClose())
$draw->pathStart();
$draw->pathCurveToAbsolute(50, 50, 80, 20, 1360, 200);
$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, 'black');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Set the stroke color
$draw->setStrokeColor('white');
// Set the stroke width
$draw->setStrokeWidth(5);
// Start a path
$draw->pathStart();
// Draw curve to absolute
$draw->pathCurveToAbsolute(50, 400, 560, 700, 160, 20);
$draw->pathCurveToAbsolute(1000, 40, 560, 70, 60, 300);
// Close the path
$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.pathcurvetoabsolute.php
相关用法
- PHP ImagickDraw arc()用法及代码示例
- PHP ImagickDraw pop()用法及代码示例
- PHP ImagickDraw destroy()用法及代码示例
- PHP ImagickDraw getStrokeDashOffset()用法及代码示例
- PHP ImagickDraw setTextEncoding()用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP ImagickDraw getFillRule()用法及代码示例
- PHP ImagickDraw getTextEncoding()用法及代码示例
- PHP ImagickDraw setClipPath()用法及代码示例
- PHP ImagickDraw getClipPath()用法及代码示例
- PHP ImagickDraw color()用法及代码示例
- PHP ImagickDraw setStrokeMiterLimit()用法及代码示例
- PHP ImagickDraw comment()用法及代码示例
- PHP ImagickDraw polyline()用法及代码示例
- PHP ImagickDraw pathMoveToRelative()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | ImagickDraw pathCurveToAbsolute() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。