码迷,mamicode.com
首页 > 其他好文 > 详细

简单验证证码代码(from-sysoft.cc)

时间:2014-10-11 14:16:05      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   for   sp   div   on   

using (Bitmap bit = new Bitmap(60, 20))
            {
                Graphics g = Graphics.FromImage(bit);
                g.FillRectangle(Brushes.White, 1, 1, bit.Width - 2, bit.Height - 2);
                Random rand = new Random();
                string code = rand.Next(100000, 1000000).ToString();
                context.Session["code"] = code;
                g.DrawString(code, new Font("黑体", 12), Brushes.Black, new PointF(1, 1));
                bit.Save(context.Response.OutputStream,ImageFormat.Jpeg);
            }

 

简单验证证码代码(from-sysoft.cc)

标签:style   blog   color   io   os   for   sp   div   on   

原文地址:http://www.cnblogs.com/sysoft/p/4018609.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!