imageellipse

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

imageellipse��һ����Բ

˵��

imageellipse ( resource $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(400300);

// ��䱳��ɫ
$bg imagecolorallocate($image000);

// ѡ����Բ����ɫ
$col_ellipse imagecolorallocate($image255255255);

// ��һ����Բ
imageellipse($image200150300200$col_ellipse);

// ���ͼ��
header("Content-type: image/png");
imagepng($image);


?>

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

��������� imageellipse()

ע��

Note:

��������Ҫ GD 2.0.2 ����߰汾��

�μ�