📜  PHP | GmagickDraw polyline()函数

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

PHP | GmagickDraw polyline()函数

GmagickDraw::polyline()函数是PHP中的一个内置函数,用于使用指定的坐标数组使用当前笔画、笔画宽度和填充颜色或纹理绘制折线。

句法:

GmagickDraw GmagickDraw::polyline( array $coordinates_array )

参数:此函数接受单个参数$coordinates_array ,该参数用于将点的坐标保存为数组。

返回值:此函数在成功时返回 GmagickDraw 对象。

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

使用图像:

下面的例子说明了PHP中的GmagickDraw::polyline()函数

程序 1:绘制图像

setFillColor('#0E0E0E');
  
// Set the stroke color
$draw->setstrokecolor('green');
  
// Set the stroke width
$draw->setStrokeWidth(5);
  
// Create a polygonline
$draw->polyline([
    ['x' => 100, 'y' => 50],
    ['x' => 40, 'y' => 150],
    ['x' => 480, 'y' => 150],
    ['x' => 110, 'y' => 75],
]);
  
// Use of drawimage function
$gmagick->drawImage($draw);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

程序 2:从头开始绘图

rectangle(-10, -10, 800, 400);
  
// Set the fill color
$draw->setFillColor('white');
  
// Set the stroke color
$draw->setstrokecolor('red');
  
// Set the stroke width
$draw->setStrokeWidth(5);
  
// Create a polygonline
$draw->polyline([
    ['x' => 400, 'y' => 0],
    ['x' => 40, 'y' => 170],
    ['x' => 480, 'y' => 150],
    ['x' => 110, 'y' => 5],
]);
  
// Use of drawimage function
$gmagick->drawImage($draw);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

参考: https://www. PHP.net/manual/en/gmagickdraw.polyline。 PHP