GmagickDraw::polyline()函数是PHP中的一个内置函数,用于使用当前的笔触,笔划宽度以及指定的坐标数组来绘制折线。
用法:
GmagickDraw GmagickDraw::polyline( array $coordinates_array )
参数:该函数接受单个参数$coordinates_array,该参数用于将点的坐标保存为数组。
返回值:成功时,此函数返回GmagickDraw对象。
异常:该函数在错误时引发GmagickDrawException。
使用的图片:
以下示例说明了PHP中的GmagickDraw::polyline()函数:
程序1:绘制图像
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Set the fill color
$draw->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:从头开始绘制
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Draw rectangle for background
$draw->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
相关用法
- PHP ImagickDraw polyline()用法及代码示例
- PHP GmagickDraw arc()用法及代码示例
- PHP GmagickDraw annotate()用法及代码示例
- PHP GmagickDraw rotate()用法及代码示例
- PHP GmagickDraw setfontsize()用法及代码示例
- PHP GmagickDraw getfillopacity()用法及代码示例
- PHP GmagickDraw polygon()用法及代码示例
- PHP GmagickDraw getfontstyle()用法及代码示例
- PHP GmagickDraw roundrectangle()用法及代码示例
- PHP GmagickDraw gettextdecoration()用法及代码示例
- PHP GmagickDraw getstrokeopacity()用法及代码示例
- PHP GmagickDraw getstrokewidth()用法及代码示例
- PHP GmagickDraw gettextencoding()用法及代码示例
- PHP GmagickDraw getfontsize()用法及代码示例
- PHP GmagickDraw point()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | GmagickDraw polyline() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。