wjx_sdau
新手上路

UID 117675
精华
0
积分 31
帖子 17
金钱 31 喜悦币
威望 0
人脉 0
阅读权限 10
注册 2008-4-4
状态 离线
|
[广告]: q
m
php画弧
<?php
header("Content-type:image/png");
$image_height=200;$image_width=300;
$image=imagecreate($image_height,$image_width);
$white=imagecolorallocate($image,255,255,255);
$red=imagecolorallocate($image,255,0,0);
imagearc($image,100,100,150,150,0,360,$red);
imagepng($image);
imagedestroy($image);
?>
|
|