MVC生成图片验证码,可指定位数

前台:

1
2
3
<h2>mvc后台生成验证码,可指定位数</h2>
<img id="gc"  src="GetValidateCode"  onclick="this.src='GetValidateCode?r=' + Math.random()" />
<button onclick="javascript:document.getElementById('gc').src='GetValidateCode?r=' + Math.random()">刷新</button>

 

后台:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
public ActionResult yzm()
      {
          return View();
      }
      /// <summary>
      /// 创建验证码的图片
      /// </summary>
      /// <param name="containsPage">要输出到的page对象</param>
      /// <param name="validateNum">验证码</param>
      public byte[] CreateValidateGraphic(string validateCode)
      {
          Bitmap image = new Bitmap((int)Math.Ceiling(validateCode.Length * 12.0), 22);
          Graphics g = Graphics.FromImage(image);
          try
          {
              //生成随机生成器
              Random random = new Random();
              //清空图片背景色
              g.Clear(Color.White);
              //画图片的干扰线
              for (int i = 0; i < 25; i++)
              {
                  int x1 = random.Next(image.Width);
                  int x2 = random.Next(image.Width);
                  int y1 = random.Next(image.Height);
                  int y2 = random.Next(image.Height);
                  g.DrawLine(new Pen(Color.Silver), x1, y1, x2, y2);
              }
              Font font = new Font("Arial", 12, (FontStyle.Bold | FontStyle.Italic));
              LinearGradientBrush brush = new LinearGradientBrush(new Rectangle(0, 0, image.Width, image.Height),
               Color.Blue, Color.DarkRed, 1.2f, true);
              g.DrawString(validateCode, font, brush, 3, 2);
              //画图片的前景干扰点
              for (int i = 0; i < 100; i++)
              {
                  int x = random.Next(image.Width);
                  int y = random.Next(image.Height);
                  image.SetPixel(x, y, Color.FromArgb(random.Next()));
              }
              //画图片的边框线
              g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1);
              //保存图片数据
              MemoryStream stream = new MemoryStream();
              image.Save(stream, ImageFormat.Jpeg);
              //输出图片流
              return stream.ToArray();
          }
          finally
          {
              g.Dispose();
              image.Dispose();
          }
      }
 
      public ActionResult GetValidateCode()
      {
 
          int code = new Random().Next(1000, 10000);
          Session["ValidateCode"] = code;
          byte[] bytes = CreateValidateGraphic(code.ToString());
          return File(bytes, @"image/jpeg");
      }

 

posted @   小小高  阅读(1265)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· .NET10 - 预览版1新功能体验(一)
点击右上角即可分享
微信分享提示