PHP GD:绘制填充路径?

时间:2014-07-22 13:04:11

标签: php image image-processing path gd

有没有人知道在PHP GD中绘制填充路径的方法?

我可以绘制轮廓没问题,通过迭代调用imageline加入路径点:

enter image description here

填写它,所以看起来如下所示,我不确定GD是否提供了填充非平凡形状的任何明显方法:

enter image description here

1 个答案:

答案 0 :(得分:1)

你应该使用imagefilledpolygon

imagefilledpolygon — Draw a filled polygon
Description 

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

imagefilledpolygon() creates a filled polygon in the given image.