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

2009-05-12 22:12:28来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

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
}
}

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:ASP.NET中将数据输出到Excel

下一篇:保存图片流到数据库之后固定显示新法

热门词条
热门标签