PHP | imagickdraw pathMoveToAbsolute()函数
ImagickDraw::pathMoveToAbsolute()函数是PHP中的一个内置函数,用于使用绝对坐标在给定坐标处开始一个新的子路径。然后当前点成为指定的坐标。此函数用于在开始绘制任何内容之前设置初始坐标。
句法:
bool ImagickDraw::pathMoveToAbsolute( float $x, float $y )
参数:该函数接受上面提到的两个参数,如下所述:
- $x:指定 x 坐标。
- $y:它指定 y 坐标。
返回值:此函数在成功时返回 TRUE。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::pathMoveToAbsolute()函数:
方案一:
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, 40)
$draw->pathMoveToAbsolute(400, 40);
// Setting the end point to (500, 40)
$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();
$color = ['blue', 'red', 'green'];
// Set the stroke width
$draw->setStrokeWidth(5);
// Draw lines
for ($x = 0; $x < 20; $x++) {
$draw->setStrokeColor($color[$x % 3]);
$draw->pathStart();
// Moving to next vertical line
$draw->pathMoveToAbsolute($x * 40, 0);
$draw->pathLineToVerticalRelative(800);
$draw->pathFinish();
}
for ($x = 0; $x < 20; $x++) {
$draw->setStrokeColor($color[$x % 3]);
$draw->pathStart();
// Moving to next horizontal line
$draw->pathMoveToAbsolute(0, $x * 40);
$draw->pathLineToHorizontalRelative(800);
$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.pathmovetoabsolute。 PHP