当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > Asp.Net 使用 GDI+ 绘制3D饼图入门篇源码

ASP.NET
asp.net 产生随机颜色实现代码
asp.ent(C#)中判断空字符串的3种方法以及性能分析
asp.net 基于forms验证的目录角色权限的实现
ASP.NET 统计图表控件小结
asp.net 动态引用样式表代码
asp.net 获取IP的相关资料
真正的获取客户端真实IP地址及利弊分析
asp.net(c#)文件下载实现代码
asp.net 不用GridView自带删除功能,删除一行数据
asp.net forms身份验证,避免重复造轮子
asp.net 站点URLRewrite使用小记
asp.net Gridview行绑定事件新体会
asp.net MVC实现简单的上传功能
asp.net web.config加密解密方法
aspx实现的 jquery ui 的 flexgrid demo
ASP.NET Internet安全Forms身份验证方法
asp.net使用for循环实现Datalist的分列显示功能
jQuery AJax调用asp.net webservers的实现代码
ASP.NET 页面刷新和定时跳转代码整理
asp.net GridView控件鼠标移动某行改变背景颜色(方法一)

ASP.NET 中的 Asp.Net 使用 GDI+ 绘制3D饼图入门篇源码


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-08-14   浏览: 139 ::
收藏到网摘: n/a

topn3dpie.aspx
------------------
<%@Pagelanguage="c#"CodeBehind="topn3dpie.aspx.cs"AutoEventWireup="false"Inherits="Yeefly.topn3dpie"%>

topn3dpie.aspx.cs
-----------------
usingSystem;
usingSystem.Collections;
usingSystem.ComponentModel;
usingSystem.Data;
usingSystem.Drawing;
usingSystem.Web;
usingSystem.Web.SessionState;
usingSystem.Web.UI;
usingSystem.Web.UI.WebControls;
usingSystem.Web.UI.HtmlControls;
usingSystem.Drawing.Imaging;
usingSystem.Drawing.Drawing2D;
usingSystem.IO;

namespaceYeefly
{
///<summary>
///Graph的摘要说明。
///</summary>
publicclasstopn3dpie:System.Web.UI.Page
{
privatevoidPage_Load(objectsender,System.EventArgse)
{
Response.ContentType="image/jpeg";
constintwidth=300,height=300;
intx=30,y=50;

intpieWidth=120,pieHeight=40,pieShadow=15;
int[]arrVote={70,90,80,20,60,40};
RandomoRan=newRandom();

BitmapobjBitmap=newBitmap(width,height);
GraphicsobjGraphics=Graphics.FromImage(objBitmap);
objGraphics.DrawRectangle(newPen(Color.Black),0,0,width,height);
objGraphics.FillRectangle(newSolidBrush(Color.White),1,1,width-2,height-2);
SolidBrushobjBrush=newSolidBrush(Color.Blue);
objGraphics.SmoothingMode=SmoothingMode.AntiAlias;

intiCurrentPos=0;

Color[]arrColor={Color.Red,Color.Red,Color.Red,Color.Red,Color.Red,Color.Red};

for(inti=arrVote.Length-1;i>=0;i--)
{
arrColor[i]=Color.FromArgb(oRan.Next(255),oRan.Next(255),oRan.Next(255));
}

for(inti=arrVote.Length-1;i>=0;i--)
{
objBrush.Color=arrColor[i];
for(intiLoop2=0;iLoop2<pieShadow;iLoop2++)
objGraphics.FillPie(newHatchBrush(HatchStyle.Percent50,objBrush.Color),x,y+iLoop2,pieWidth,pieHeight,iCurrentPos,arrVote[i]);
iCurrentPos+=arrVote[i];
}

iCurrentPos=0;
for(inti=arrVote.Length-1;i>=0;i--)
{
objBrush.Color=arrColor[i];
objGraphics.FillPie(objBrush,x,y,pieWidth,pieHeight,iCurrentPos,arrVote[i]);
iCurrentPos+=arrVote[i];
}

objBitmap.Save(Response.OutputStream,ImageFormat.Jpeg);
//cleanup...
objGraphics.Dispose();
objBitmap.Dispose();
}

#regionWeb窗体设计器生成的代码
overrideprotectedvoidOnInit(EventArgse)
{
//
//CODEGEN:该调用是ASP.NETWeb窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}

///<summary>
///设计器支持所需的方法-不要使用代码编辑器修改
///此方法的内容。
///</summary>
privatevoidInitializeComponent()
{
this.Load+=newSystem.EventHandler(this.Page_Load);
}
#endregion
}
}