PHP | imagickdraw pathMoveToRelative()函数
ImagickDraw::pathMoveToRelative()函数是PHP中的一个内置函数,用于使用相对坐标在给定坐标处开始新的子路径。然后当前点成为指定的坐标。此函数用于在开始绘制任何内容之前设置初始坐标。
句法:
bool ImagickDraw::pathMoveToRelative( float $x, float $y )
参数:该函数接受上面提到的两个参数,如下所述:
- $x:指定 x 坐标。
- $y:它指定 y 坐标。
返回值:此函数在成功时返回 TRUE。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::pathMoveToRelative()函数:
方案一:
newImage(800, 250, 'white');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Set the stroke width
$draw->setStrokeWidth(30);
$draw->pathStart();
// Setting the stating point to (400, 100)
$draw->pathMoveToRelative(400, 100);
// Setting the end point to (500, 100)
$draw->pathLineToHorizontalAbsolute(500);
$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();
// Set the stroke width
$draw->setStrokeWidth(30);
$draw->setFillColor('red');
$draw->pathStart();
// Setting the stating point to (400, 100), draw a rectangle
$draw->pathMoveToRelative(400, 100);
$draw->pathLineToAbsolute(400, 200);
$draw->pathLineToAbsolute(300, 200);
$draw->pathLineToAbsolute(300, 100);
$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.pathmovetorelative。 PHP