(PHP 4 >= 4.0.6, PHP 5, PHP 7)
imagefilledellipse — ��һ��Բ�����
$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(400, 300);
// fill the background color
$bg = imagecolorallocate($image, 0, 0, 0);
// choose a color for the ellipse
$col_ellipse = imagecolorallocate($image, 255, 255, 255);
// draw the white ellipse
imagefilledellipse($image, 200, 150, 300, 200, $col_ellipse);
// output the picture
header("Content-type: image/png");
imagepng($image);
?>
�������̵���������ڣ�
Note: �˺�����Ҫ GD 2.0.1 ����߰汾(�Ƽ� 2.0.28 �����߰汾)��