时间:2021-07-01 10:21:17 帮助过:5人阅读
一般的过程:
输出并保存图像 imagedestroy($img_1);//销毁服务器资源?>
=50; $i--){ imagefilledarc($img_1, 100, $i, 100, 50, 0, 35, $darkblue, IMG_ARC_PIE); imagefilledarc($img_1, 100, $i, 100, 50, 35, 75, $darkgary, IMG_ARC_PIE); imagefilledarc($img_1, 100, $i, 100, 50, 75, 360, $darkred, IMG_ARC_PIE); }//在最高层添加纯色层 imagefilledarc($img_1, 100, 50, 100, 50, 0, 35, $blue, IMG_ARC_PIE); imagefilledarc($img_1, 100, 50, 100, 50, 35, 75, $gary, IMG_ARC_PIE); imagefilledarc($img_1, 100, 50, 100, 50, 75, 360, $red, IMG_ARC_PIE);//定义,保存,显示,销毁 header("Content-type: image/png"); imagepng($img_1); imagedestroy($img_1);?>