日期:2014-05-17 浏览次数:20434 次
public partial class test : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
int width = 200;
int height = 100;
Bitmap b = new Bitmap(width, height);
Graphics g = Graphics.FromImage(b);
g.Clear(Color.White);
g.SmoothingMode = SmoothingMode.AntiAlias;
g.TextRenderingHint = TextRenderingHint.AntiAlias;
string str = "Abc gif";
g.DrawString(str, new Font("arial", 10, FontStyle.Bold), Brushes.DarkBlue, new PointF(50, 50));
Response.ContentType = "image/Gif";
b.Save(Response.OutputStream, ImageFormat.Gif);
b.Dispose();
g.Dispose();
}
}