(PHP 4, PHP 5, PHP 7)
imagearc — ����Բ��
$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(200, 200);
// ������ɫ
$white = imagecolorallocate($img, 255, 255, 255);
$black = imagecolorallocate($img, 0, 0, 0);
// ��һ����ɫ��Բ
imagearc($img, 100, 100, 150, 150, 0, 360, $black);
// ��ͼ������������
header("Content-type: image/png");
imagepng($img);
// �ͷ��ڴ�
imagedestroy($img);
?>
�μ� imageellipse()��imagefilledellipse() �� imagefilledarc()��