PHP:imagearc()的用法_GD库图像处理函数
595
2023-12-15
(PHP 4, PHP 5)
imagefilledpolygon — 画一多边形并填充
$image
, array $points
, int $num_points
, int $color
)
imagefilledpolygon() 在 image
图像中画一个填充了的多边形。
points
参数是一个按顺序包含有多边形各顶点的
x 和 y
坐标的数组。
num_points
参数是顶点的总数,必须大于 3。
Example #1 imagefilledpolygon() 例子
<?php
// 建立多边形各顶点坐标的数组
$values = array(
40, 50, // Point 1 (x, y)
20, 240, // Point 2 (x, y)
60, 60, // Point 3 (x, y)
240, 20, // Point 4 (x, y)
50, 40, // Point 5 (x, y)
10, 10 // Point 6 (x, y)
);
// 创建图像
$image = imagecreatetruecolor(250, 250);
// 设定颜色
$bg = imagecolorallocate($image, 200, 200, 200);
$blue = imagecolorallocate($image, 0, 0, 255);
// 画一个多边形
imagefilledpolygon($image, $values, 6, $blue);
// 输出图像
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
?>
#免责声明#
本站[绿夏技术导航]提供的一切软件、教程和内容信息仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。本站信息来自网络收集整理,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑或手机中彻底删除上述内容。如果您喜欢该程序或内容,请支持正版,购买注册,得到更好的正版服务。我们非常重视版权问题,如有侵权请邮件[admin@lxwl520.com]与我们联系进行删除处理。敬请谅解!