imagefilledpolygon

(PHP 4, PHP 5, PHP 7)

imagefilledpolygon��һ����β����

˵��

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

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)
            
24020,  // Point 4 (x, y)
            
50,  40,  // Point 5 (x, y)
            
10,  10   // Point 6 (x, y)
            
);

// ����ͼ��
$image imagecreatetruecolor(250250);

// �趨��ɫ
$bg   imagecolorallocate($image200200200);
$blue imagecolorallocate($image00255);

// ��һ�������
imagefilledpolygon($image$values6$blue);

// ���ͼ��
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
?>