📜  PHP | GmagickDraw ()函数

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

PHP | GmagickDraw ()函数

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

句法:

GmagickDraw GmagickDraw::polygon( array $coordinates )

参数:此函数接受单个参数$coordinates保存坐标数组。

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

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

使用的图像:

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

示例 1:在图像上绘图。

setFillColor('red');
  
// Set the stroke color
$draw->setstrokecolor('green');
  
// Set the stroke width
$draw->setStrokeWidth(5);
  
// Create a polygon
$draw->polygon([
    ['x' => 300, 'y' => 50],
    ['x' => 140, 'y' => 150],
    ['x' => 380, '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('#0E0E0E');
  
// Set the stroke color
$draw->setstrokecolor('green');
  
// Set the stroke width
$draw->setStrokeWidth(5);
  
// Create a polygon
$draw->polygon([
    ['x' => 400, '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();
?>

输出:

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