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


PHP imageopenpolygon()用法及代码示例


imageopenpolygon()函数是PHP中的内置函数,用于绘制开放的多边形。

用法:

bool imageopenpolygon( resource $image, array $points,
int $num_points, int $color )

参数:该函数接受上述和以下所述的四个参数:


  • $image:它指定要处理的图像资源。
  • $points:它指定多边形的点。
  • $num_points:它指定点数。
  • $color:它指定多边形的颜色。

返回值:如果成功,则此函数返回TRUE;如果失败,则返回FALSE。

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

范例1:在此示例中,我们将在空白图形上绘制多边形。

<?php 
  
// Create a blank image 
$image = imagecreatetruecolor(400, 300); 
  
// Prepare the colors 
$red = imagecolorallocate($image, 255, 0, 0); 
  
// Points of array 
$points =  array( 
    80, 150, 
    150, 250, 
    300, 250, 
    370, 150, 
    230, 50, 
    80, 150 
); 
  
// Create an polygon 
imageopenpolygon($image, $points, 6, $red); 
  
// Output to browser 
header('Content-type:image/png'); 
imagepng($image); 
imagedestroy($image); 
?>

输出:

范例2:在此示例中,在图像上绘制多边形。

<?php 
  
// Create an image instance 
$image = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Prepare the colors 
$red = imagecolorallocate($image, 255, 0, 0); 
  
// Points of array 
$points =  array( 
    10, 10, 
    660, 10, 
    660, 100, 
    10, 100, 
    10, 10 
); 
  
// Create an polygon 
imageopenpolygon($image, $points, 5, $red); 
  
// Output to browser 
header('Content-type:image/png'); 
imagepng($image); 
imagedestroy($image); 
?>

输出:

参考: https://www.php.net/manual/en/function.imageopenpolygon.php



相关用法


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