📜  PHP | imagickdraw pathLineToHorizontalAbsolute()函数

📅  最后修改于: 2022-05-13 01:56:38.733000             🧑  作者: Mango

PHP | imagickdraw pathLineToHorizontalAbsolute()函数

ImagickDraw::pathLineToHorizontalAbsolute()函数是PHP中的一个内置函数,用于使用绝对坐标绘制从当前点到目标点的水平线路径。然后目标点成为新的当前点。当前点也可以通过pathMoveToRelative()函数来设置。

句法:

bool ImagickDraw::pathLineToHorizontalAbsolute( float $x )

参数:此函数接受一个包含 x 坐标的参数$x

返回值:此函数在成功时返回 TRUE。

异常:此函数在出错时抛出 ImagickException。

下面给出的程序说明了PHP中的ImagickDraw::pathLineToHorizontalAbsolute()函数

方案一:

newImage(800, 250, 'white');
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Set the stroke color
$draw->setStrokeColor('blue');
  
// Set the stroke width
$draw->setStrokeWidth(5);
  
// Draw line using pathLineToHorizontalAbsolute
$draw->pathStart();
$draw->pathMoveToRelative(0, 100);
$draw->pathLineToHorizontalAbsolute(1000);
$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(0, 20);
    if($x % 2) {
        $draw->pathLineToHorizontalAbsolute(0);
    } else {
        $draw->pathLineToHorizontalAbsolute(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.pathlinetohorizontalabsolute。 PHP