imagefilledellipse() 함수는 채워진 타원을 그리는 데 사용됩니다.
구문
imagefilledellipse( $img, $cx, $cy, $width, $height, $color )
매개변수
-
이미지 imagecreatetruecolor()
를 사용하여 빈 이미지를 만듭니다. -
cx 중심의 x 좌표입니다.
-
사이 중심의 y 좌표입니다.
-
너비 타원 너비.
-
높이 타원 높이.
-
색상 채우기 색상입니다.
돌아가기
imagefilledellipse() 함수는 성공하면 TRUE를, 실패하면 FALSE를 반환합니다.
예
다음은 예입니다.
<?php $img = imagecreatetruecolor(450, 290); $bgColor = imagecolorallocate($img, 140, 180, 140); imagefill($img, 0, 0, $bgColor); $ellipse = imagecolorallocate($img, 120, 50, 70); imagefilledellipse($img, 225, 150, 400, 250, $ellipse); header("Content-type: image/png"); imagepng($img); ?>
출력
다음은 출력입니다.