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

ASP.NET
.NET:InTheHand提供的类操作SMS
捕捉WPF应用程序中XAML代码解析异常
学习asp.net之SQL语句查询效率和安全性
一个不被flash、select、activex遮挡的、跨frame的无限分级菜单
探索 ASP.NET Futures
MSDN Visual系列:创建SharePoint Services解决方案包
.net中如何给数据表实体类赋值的方法
关于C#静态构造函数的几点说明
经典教程:用.net动态创建类的实例
ASP.NET 遍历配置文件的连接字符串
ASP.Net中利用CSS实现多界面两法
ASP.NET生成静态HTML页面并分别按年月目录存放
如何在ASP.net(C#)下操作XML文件
技巧应用:ASP.Net中的MD5加密
三层架构各层间的访问过程
asp.net初学者:petshop4.0设计说明
asp.net利用RAR实现文件压缩解压缩
.NET2.0抓取网页全部链接
给初学.net的您几点建议
如何实现ASP.NET网站个性化

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-08-14   浏览: 143 ::
收藏到网摘: 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
}
}