WEB控件中怎么用GDI画图
windows控件一样继承System.Windows.Forms.UserControl,可以直接在paint里面画,但编译出的dll不能显示在网页上。所以我要改成WE...
windows控件一样继承System.Windows.Forms.UserControl,可以直接在paint里面画,但编译出的dll不能显示在网页上。
所以我要改成WEB控件,新建项目后,看到它是继承System.Web.UI.WebControls.WebControl,
用Render输出到网页,比如我想画一个图表,自己用GDI+写内容。在哪儿写? 展开
所以我要改成WEB控件,新建项目后,看到它是继承System.Web.UI.WebControls.WebControl,
用Render输出到网页,比如我想画一个图表,自己用GDI+写内容。在哪儿写? 展开
2个回答
展开全部
可以参考下面的代码“Handler.ashx”
先在Bitmap上绘图,再把画好的图以jpeg的格式发给客户端。
<%@ WebHandler Language="C#" Class="Handler" %>
using System;
using System.Web;
using System.Drawing;
using System.IO;
public class Handler : IHttpHandler {
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "image/JPEG";
Bitmap bmp = new Bitmap(100, 100);
Graphics g = Graphics.FromImage(bmp);
g.DrawString("abc", SystemFonts.CaptionFont, Brushes.White, 0, 0);
bmp.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
}
public bool IsReusable {
get {
return false;
}
}
}
先在Bitmap上绘图,再把画好的图以jpeg的格式发给客户端。
<%@ WebHandler Language="C#" Class="Handler" %>
using System;
using System.Web;
using System.Drawing;
using System.IO;
public class Handler : IHttpHandler {
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "image/JPEG";
Bitmap bmp = new Bitmap(100, 100);
Graphics g = Graphics.FromImage(bmp);
g.DrawString("abc", SystemFonts.CaptionFont, Brushes.White, 0, 0);
bmp.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
}
public bool IsReusable {
get {
return false;
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询