当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP GmagickDraw polygon()用法及代码示例


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

用法:

GmagickDraw GmagickDraw::polygon( array $coordinates )

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


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

异常:该函数在错误时引发GmagickDrawException。

使用的图片:

以下示例说明了PHP中的GmagickDraw::polygon()函数:

范例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('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:从头开始绘制。

<?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('#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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | GmagickDraw polygon() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。