imagefilledellipse

(PHP 4 >= 4.0.6, PHP 5, PHP 7)

imagefilledellipse��һ��Բ�����

˵��

imagefilledellipse ( resource $image , int $cx , int $cy , int $width , int $height , int $color ) : bool

��һ��Բ����䵽ָ���� image��

����

image

��ͼ�󴴽�����(����imagecreatetruecolor())���ص�ͼ����Դ��

cx

����� x ���ꡣ

cy

����� y ���ꡣ

width

��Բ�Ŀ�ȡ�

height

��Բ�ĸ߶ȡ�

color

Ҫ������ɫ����ɫ��ʶ�ɺ��� imagecolorallocate() ������

����ֵ

�ɹ�ʱ���� TRUE�� ������ʧ��ʱ���� FALSE��

����

Example #1 imagefilledellipse() ����

<?php

// create a blank image
$image imagecreatetruecolor(400300);

// fill the background color
$bg imagecolorallocate($image000);

// choose a color for the ellipse
$col_ellipse imagecolorallocate($image255255255);

// draw the white ellipse
imagefilledellipse($image200150300200$col_ellipse);

// output the picture
header("Content-type: image/png");
imagepng($image);

?>

�������̵���������ڣ�

��������� imagefilledellipse()

ע��

Note: �˺�����Ҫ GD 2.0.1 ����߰汾(�Ƽ� 2.0.28 �����߰汾)��

�μ�