Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP의 imagefill() 함수

<시간/>

imagefill() 함수는 이미지를 채우는 데 사용됩니다.

구문

imagefill(img, x, y, color)

매개변수

  • 이미지
    imagecreatetruecolor()를 사용하여 빈 이미지를 만듭니다.

  • x
    시작점의 x 좌표


  • 시작점의 y 좌표

  • 색상
    채우기 색상입니다.

돌아가기

imagefill() 함수는 성공하면 TRUE를, 실패하면 FALSE를 반환합니다.

다음은 예입니다.

<?php
   $img = imagecreatetruecolor(400, 400);
   $color = imagecolorallocate($img, 190, 255, 120);
   imagefill($img, 0, 0, $color);
   header('Content-type: image/png');
   imagepng($img);
   imagedestroy($img);
?>

출력

다음은 출력입니다.

PHP의 imagefill() 함수