imagearc

(PHP 4, PHP 5, PHP 7)

imagearc����Բ��

˵��

imagearc ( resource $image , int $cx , int $cy , int $w , int $h , int $s , int $e , int $color ) : bool

imagearc() �� cx��cy��ͼ�����Ͻ�Ϊ 0, 0��Ϊ������ image �������ͼ���л�һ����Բ����w �� h �ֱ�ָ������Բ�Ŀ�Ⱥ͸߶ȣ���ʼ�ͽ������� s �� e �����ԽǶ�ָ����0��λ��������λ�ã���˳ʱ�뷽��滭��

Example #1 �� imagearc() ��һ��Բ

<?php
// ����һ�� 200X200 ��ͼ��
$img imagecreatetruecolor(200200);
// ������ɫ
$white imagecolorallocate($img255255255);
$black imagecolorallocate($img000);
// ��һ����ɫ��Բ
imagearc($img1001001501500360$black);
// ��ͼ������������
header("Content-type: image/png");
imagepng($img);
// �ͷ��ڴ�
imagedestroy($img);
?>

�μ� imageellipse()��imagefilledellipse() �� imagefilledarc()��