0

我确定标题是否正是我想要描述的,如果不是,我很抱歉。

好的,这就是我想要做的:

替代文字

我想要做的是创建一个函数,您可以输入无限数量的坐标(蓝点),然后它将创建一个像这样的形状,然后返回形状覆盖的所有坐标。因为这是用于处理像素,所以不会有十进制坐标。

可以这样使用的东西:

print_r(get_coords(12,6, 23,13, 30,9, 37,24, 24,34, 25,24, 7,30, 6,15));

// ^ Will output an array of all x and y coordinates that the shape covers

我将如何去做这样的事情?

4

1 回答 1

1

http://php.net/imagefilledpolygon

于 2010-03-27T13:17:09.320 回答