update : 2015.11.03
php.shukuma.com

검색:
 
 
Flood fill

imagefill

(PHP 4, PHP 5, PHP 7)

imagefillFlood fill

설명

bool imagefill ( resource $image , int $x , int $y , int $color )

Performs a flood fill starting at the given coordinate (top left is 0, 0) with the given color in the image.

인수

image

imagecreatetruecolor() 등의 이미지 생성 함수에서 반환한 이미지 자원.

x

x-coordinate of start point.

y

y-coordinate of start point.

color

The fill color. A color identifier created with imagecolorallocate().

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

예제

Example #1 imagefill() example

<?php

$im 
imagecreatetruecolor(100100);

// sets background to red
$red imagecolorallocate($im25500);
imagefill($im00$red);

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

위 예제의 출력 예시:

Output of example : imagefill()

참고