(PHP 4, PHP 5)
imagefill — Flood fill
Performs a flood fill starting at the given coordinate (top left is 0, 0) with the given color in the image .
imagecreatetruecolor() 등의 이미지 생성 함수에서 반환한 이미지 자원.
x-coordinate of start point.
y-coordinate of start point.
The fill color. A color identifier created with imagecolorallocate().
성공할 경우 TRUE를, 실패할 경우 FALSE를 반환합니다.
Example #1 imagefill() example
<?php
$im = imagecreatetruecolor(100, 100);
// sets background to red
$red = imagecolorallocate($im, 255, 0, 0);
imagefill($im, 0, 0, $red);
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>
위 예제의 출력 예시: