PHP | imagickdraw pathLineToVerticalAbsolute()函数
ImagickDraw::pathLineToVerticalAbsolute()函数是PHP中的一个内置函数,用于使用绝对坐标绘制从当前点到目标点的垂直线路径。然后目标点成为新的当前点。
句法:
bool ImagickDraw::pathLineToVerticalAbsolute( float $y )
参数:此函数接受单个参数$y ,它保存 y 坐标。
返回值:此函数在成功时返回 TRUE。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::pathLineToVerticalAbsolute()函数:
方案一:
newImage(800, 250, 'white');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Set the stroke width
$draw->setStrokeWidth(5);
// Draw a verticle line
$draw->pathStart();
$draw->pathMoveToRelative(400, 0);
$draw->pathLineToVerticalAbsolute(800);
$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 color
$draw->setStrokeColor('black');
// Set the stroke width
$draw->setStrokeWidth(5);
// Draw lines
$draw->pathStart();
for($x = 0; $x < 15; $x++) {
$draw->pathMoveToRelative(50, 0);
if($x % 2) {
$draw->pathLineToVerticalAbsolute(0);
} else {
$draw->pathLineToVerticalAbsolute(1000);
}
}
$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.pathlinetoverticalabsolute。 PHP