(PHP 4 >= 4.0.6, PHP 5, PHP 7)
imageellipse — ��һ����Բ
$image
, int $cx
, int $cy
, int $width
, int $height
, int $color
) : bool��ָ���������ϻ�һ����Բ��
image
��ͼ������(����imagecreatetruecolor())���ص�ͼ����Դ��
cx
�м�� X ���ꡣ
cy
�м�� Y ���ꡣ
width
��Բ�Ŀ�ȡ�
height
��Բ�ĸ߶ȡ�
color
��Բ����ɫ����ɫ��ʶ���� imagecolorallocate() ������
�ɹ�ʱ���� TRUE
�� ������ʧ��ʱ���� FALSE
��
Example #1 imageellipse() ����
<?php
// �½�һ���հ�ͼ��
$image = imagecreatetruecolor(400, 300);
// ��䱳��ɫ
$bg = imagecolorallocate($image, 0, 0, 0);
// ѡ����Բ����ɫ
$col_ellipse = imagecolorallocate($image, 255, 255, 255);
// ��һ����Բ
imageellipse($image, 200, 150, 300, 200, $col_ellipse);
// ���ͼ��
header("Content-type: image/png");
imagepng($image);
?>
�������̵���������ڣ�
Note:
��������Ҫ GD 2.0.2 ����߰汾��