c#如何在页面生成验证码

 时间:2024-10-14 10:09:43

1、创建验证码的帮助类ValidateCode.cs,类文件可以放在项目的任何一层,只要方便调用。

c#如何在页面生成验证码

3、有了验证码后,因为我们要呈现在页面上,所以,生成的验证码必须要有载体,这个载体就是图片,具体实现如下: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.Red, 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(); } }

c#如何在页面生成验证码

5、新建页面,在页面中声明验证码的接收元素img,并将图片的src指向控制器层的方法,具体声明如下:<img class="yzmimg img-code" id="code" title="刷新" src="/ChangeCode" />

c#如何在页面生成验证码
  • Intellij IDEA如何创建Java模块
  • 如何下载安装tomcat8.5.39
  • MyEclipse工具如何激活?
  • MySQL忘记密码怎么办
  • Eclipse 导入项目报错,解决方法
  • 热门搜索
    昕怎么读 邯郸怎么读 头痛怎么办快速缓解小方法 人保车险怎么样 哺乳期怎么判断怀孕了 排卵期为什么没怀孕 芒果吃多了会怎么样 为什么入党 大脑供血不足怎么办 小孩脾胃虚弱怎么调理