(PHP 4, PHP 5, PHP 7)
imagefill — �������
$image
, int $x
, int $y
, int $color
) : bool
imagefill() �� image
ͼ������� x
��y
��ͼ�����Ͻ�Ϊ
0, 0������ color
��ɫִ��������䣨���� x, y ����ɫ��ͬ�����ڵĵ㶼�ᱻ��䣩��
Example #1 imagefill() ����
<?php
$im = imagecreatetruecolor(100, 100);
// ��������Ϊ��ɫ
$red = imagecolorallocate($im, 255, 0, 0);
imagefill($im, 0, 0, $red);
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>
�μ� imagecolorallocate()��