📜  PHP | imagickdraw pathstart()函数

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

PHP | imagickdraw pathstart()函数

ImagickDraw::pathStart()函数是PHP中的一个内置函数,用于声明路径绘制列表的开始。后来, pathFinish()函数用于终止这个列表。

句法:

bool ImagickDraw::pathStart( void )

参数:此函数不接受任何参数。

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

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

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

方案一:

newImage(800, 250, 'white');
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Set the stroke width
$draw->setStrokeWidth(10);
  
$draw->setFillColor('green');
  
// Start the path
$draw->pathStart();
  
// Draw a pattern
$draw->pathMoveToRelative(400, 200);
$draw->pathLineToAbsolute(400, 100);
$draw->pathLineToAbsolute(300, 200);
$draw->pathLineToAbsolute(300, 100);
  
// End 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();
?>

输出:

方案二:

newImage(800, 250, 'white');
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Set the stroke width
$draw->setStrokeWidth(10);
  
// Set the stroke color
$draw->setStrokeColor('red');
  
// Set the fill color
$draw->setFillColor('white');
  
// Start the path
$draw->pathStart();
$x = 1;
  
// Draw a pattern
while ($x < 10) {
    $draw->pathMoveToAbsolute($x * 100, 0);
    $draw->pathLineToHorizontalAbsolute($x * 100);
    $draw->pathMoveToAbsolute(0, $x * 100);
    $x++;
}
  
$draw->pathclose();
  
// End 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.pathstart。 PHP