jQuery调用WebMethod(PageMethod) NET2.0的方法
404
2024-03-07
(PHP 4, PHP 5)
imagepolygon — 画一个多边形
$image
, array $points
, int $num_points
, int $color
)
imagepolygon() 在图像中创建一个多边形。points
是一个 PHP 数组,包含了多边形的各个顶点坐标,即 points[0]
= x0,points[1] = y0,points[2]
= x1,points[3] = y1,以此类推。num_points
是顶点的总数。
Example #1 imagepolygon() 例子
<?php
// create a blank image
$image = imagecreatetruecolor(400, 300);
// fill the background color
$bg = imagecolorallocate($image, 0, 0, 0);
// choose a color for the polygon
$col_poly = imagecolorallocate($image, 255, 255, 255);
// draw the polygon
imagepolygon($image,
array (
0, 0,
100, 200,
300, 200
),
3,
$col_poly);
// output the picture
header("Content-type: image/png");
imagepng($image);
?>
参见 imagecreate() 和 imagecreatetruecolor()。
#免责声明#
本站[绿夏技术导航]提供的一切软件、教程和内容信息仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。本站信息来自网络收集整理,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑或手机中彻底删除上述内容。如果您喜欢该程序或内容,请支持正版,购买注册,得到更好的正版服务。我们非常重视版权问题,如有侵权请邮件[admin@lxwl520.com]与我们联系进行删除处理。敬请谅解!