- */
-
- $image=imagecreatetruecolor(300,300);
-
- $white=imagecolorallocate($image, 0xff, 0xff, 0xff);
- $gray=imagecolorallocate($image, 0xc0, 0xc0, 0xc0);
- $darkgray=imagecolorallocate($image, 0x90, 0x90, 0x90);
- $navy=imagecolorallocate($image, 0x00, 0x00, 0x80);
- $darknavy=imagecolorallocate($image, 0x00, 0x00, 0x50);
- $red=imagecolorallocate($image, 0xff, 0x00, 0x00);
- $darkred=imagecolorallocate($image, 0x90, 0x00, 0x00);
-
-
-
-
-
- for($i=160;$i > 150; $i--)
- {
- imagefilledarc($image, 150, $i, 200, 80, 0, 45, $darknavy, img_arc_pie);
- imagefilledarc($image, 150, $i, 200, 80, 45, 75 , $darkgray, img_arc_pie);
- imagefilledarc($image, 150, $i, 200, 80, 75, 360 , $darkred, img_arc_pie);
- }
- imagefilledarc($image, 150, 150, 200, 80, 0, 45, $navy, img_arc_pie);
- imagefilledarc($image, 150, 150, 200, 80, 45, 75 , $gray, img_arc_pie);
- imagefilledarc($image, 150, 150, 200, 80, 75, 360 , $red, img_arc_pie);
- header('content-type: image/png');
- imagepng($image);
- imagedestroy($image);
-
-
-
-
-
-
-
- $img=imagecreatetruecolor(300,300);
- $white=imagecolorallocate($img,255,255,255);
- $red=imagecolorallocate($img,255,0,0);
- $green=imagecolorallocate($img,0,255,0);
-
- imagefilledellips教程e($img,150,150,250,100,$red);
- imagefilledellipse($img,150,150,100,250,$green);
-
- header("content-type: image/png");
- imagepng($img);
-
- imagedestroy($img);
|