imagefilledarc

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

imagefilledarc��һ��Բ�������

˵��

imagefilledarc ( resource $image , int $cx , int $cy , int $width , int $height , int $start , int $end , int $color , int $style ) : bool

��ָ���� image �ϻ�һ��Բ������䡣

����

image

��ͼ�󴴽�����(����imagecreatetruecolor())���ص�ͼ����Դ��

cx

�м�� x ���ꡣ

cy

�м�� y ���ꡣ

width

��Բ���Ŀ�ȡ�

height

��Բ���ĸ߶ȡ�

start

���Ƕȡ�

end

�յ�Ƕȡ� 0�� is located at the three-o'clock position, and the arc is drawn clockwise.

color

imagecolorallocate() ��������ɫ��ʶ����

style

ֵ����������ֵ�İ�λ��OR����

  1. IMG_ARC_PIE
  2. IMG_ARC_CHORD
  3. IMG_ARC_NOFILL
  4. IMG_ARC_EDGED
IMG_ARC_PIE �� IMG_ARC_CHORD �ǻ���ģ�IMG_ARC_CHORD ֻ����ֱ����������ʼ�ͽ����㣬IMG_ARC_PIE �����Բ�α߽硣IMG_ARC_NOFILL ָ��������ֻ������������䡣IMG_ARC_EDGED ָ����ֱ�߽���ʼ�ͽ����������ĵ��������� IMG_ARC_NOFILL һ��ʹ���ǻ���״ͼ�����ĺ÷�������������䣩��

����ֵ

�ɹ�ʱ���� TRUE�� ������ʧ��ʱ���� FALSE��

����

Example #1 ����һ 3D Ч���ı�״ͼ

<?php

// ����ͼ��
$image imagecreatetruecolor(100100);

// ����һЩ��ɫ
$white    imagecolorallocate($image0xFF0xFF0xFF);
$gray     imagecolorallocate($image0xC00xC00xC0);
$darkgray imagecolorallocate($image0x900x900x90);
$navy     imagecolorallocate($image0x000x000x80);
$darknavy imagecolorallocate($image0x000x000x50);
$red      imagecolorallocate($image0xFF0x000x00);
$darkred  imagecolorallocate($image0x900x000x00);

// ���� 3D Ч��
for ($i 60$i 50$i--) {
   
imagefilledarc($image50$i10050045$darknavyIMG_ARC_PIE);
   
imagefilledarc($image50$i100504575 $darkgrayIMG_ARC_PIE);
   
imagefilledarc($image50$i1005075360 $darkredIMG_ARC_PIE);
}

imagefilledarc($image505010050045$navyIMG_ARC_PIE);
imagefilledarc($image5050100504575 $grayIMG_ARC_PIE);
imagefilledarc($image50501005075360 $redIMG_ARC_PIE);


// ���ͼ��
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
?>

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

�������������һ 3D Ч���ı�״ͼ

ע��

Note: �˺�����Ҫ GD 2.0.1 ����߰汾(�Ƽ� 2.0.28 �����߰汾)��