如何使用 PHP 中的 imageopenpolygon() 函数绘制一个开放多边形?
imageopenpolygon() 是 PHP 中的一个内置函数,用于在给定的图像上绘制一个开放多边形。
语法
bool imageopenpolygon(resource $image,array $points,int $num_points,int $color)
参数
imageopenpolygon() 采用四个不同的参数:$image、$points、$num_points 和$color。
$image − 指定要处理的图像资源。
$image − 指定要处理的图像资源。
$points − 指定多边形的点。
$num_points − 指定点的数量。总的(顶点)点数量必须至少为三个。
$color − 此参数指定多边形的颜色。
返回值
imageopenpolygon() 在成功时返回 True,失败时返回 False。
示例 1
<?php // Create a blank image using imagecreatetruecolor() function. $img = imagecreatetruecolor(700, 300); // Allocate a color for the polygon $col_poly = imagecolorallocate($img, 0, 255, 0); // Draw the polygon imageopenpolygon($img, array( 0, 0, 100, 200, 400, 200 ), 3, $col_poly); // Output the picture to the browser header('Content-type: image/png'); imagepng($img); imagedestroy($img); ?>
输出
示例 2
<?php // Create a blank image using imagecreatetruecolor() function. $image = imagecreatetruecolor(700, 300); // allocate the colors $blue = imagecolorallocate($image, 0, 255, 255); // Six points of the array $points = array( 60, 130, 130, 230, 280, 230, 350, 130, 210, 30, 60, 130 ); // Create a polygon imageopenpolygon($image, $points, 6, $blue); // Output to the browser header('Content-type: image/png'); imagepng($image); imagedestroy($image); ?>
输出
广告