博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【ASP.NET 进阶】验证码的实现
阅读量:6327 次
发布时间:2019-06-22

本文共 5036 字,大约阅读时间需要 16 分钟。

由于本人现在是做.NET的,负责的模块有需要验证码的功能,虽然用公司的模版简单的复制粘贴代码,就把功能搞定了,但是觉得还是自己动手了解下其功能实现,在网上找了半天没找到可靠的代码,只有,这篇博文还算靠谱,结合自己的理解搞定了验证码的实现,现记录并共享之。

1.现看下效果实现(由于gif屏幕录制软件是即时找的,有些失祯,如果有需要的朋友可以点击''下载源代码)

2.代码主要就是绘制验证码类的实现

DrawingSecurityCode.cs
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Drawing;using System.IO;namespace SecurityCodePic{    public class DrawingSecurityCode    {        ///         /// 生成验证码,并返回        ///         /// 
public string GetSecurityCode(int n) { string code = GenerateCheckCode(n); CreateCheckCodeImage(code); return code; } /// /// 动态生成指定数目的随机数或字母 /// /// 整数 ///
返回验证码字符串
private string GenerateCheckCode(int num) { int number;//定义变量 char code; string checkCode = String.Empty; //空字符串,只读 Random random = new Random(); //定义随机变量实例 for (int i=0; i < num;i++ ) { //利用for循环生成指定数目的随机数或字母 number = random.Next(); //返回一个小于指定的最大值的非负的随机数 next有三个构造函数 if (number % 2 == 0) {
//产生一个一位数 code = (char)('0' + (char)(number % 10)); } else { //产生一个大写字母 code = (char)('A'+(char)(number % 26)); } checkCode += code.ToString(); } return checkCode; } /// /// 根据验证码字符串生成验证码图片 /// /// 验证码字符串 private void CreateCheckCodeImage(string checkCode) { if (checkCode == null || checkCode.Trim() == String.Empty) return; // 引用System.Drawing类库 Bitmap myImage = new Bitmap(80, 30);//生成一个指定大小的位图 Graphics graphics = Graphics.FromImage(myImage); //从一个位图生成一个画布 try { graphics.Clear(Color.White); //清除整个绘画面并以指定的背景色填充,这里是把背景色设为白色 Random random = new Random(); //实例化一个伪随机数生成器 //画图片的前景噪音点,这里有100个 for (int i = 0; i < 100; i++) { int x = random.Next(myImage.Width); int y = random.Next(myImage.Height); myImage.SetPixel(x, y, Color.FromArgb(random.Next()));//指定坐标为x,y处的像素的颜色 } //画图片的背景噪音线,这里为2条 for (int i = 0; i < 2; i++) { int x1 = random.Next(myImage.Width); int x2 = random.Next(myImage.Width); int y1 = random.Next(myImage.Height); int y2 = random.Next(myImage.Height); graphics.DrawLine(new Pen(Color.Black), x1, y1, x2, y2); //绘制一条坐标x1,y1到坐标x2,y2的指定颜色的线条,这里的线条为黑色 } Font font = new Font("Arial", 15, FontStyle.Bold); //定义特定的文本格式,这里的字体为Arial,大小为15,字体加粗 //根据矩形、起始颜色和结束颜色以及方向角度产生一个LinearGradientBrush实例---线性渐变 System.Drawing.Drawing2D.LinearGradientBrush brush = new System.Drawing.Drawing2D.LinearGradientBrush( new Rectangle(0, 0, myImage.Width, myImage.Height),//在坐标0,0处实例化一个和myImage同样大小的矩形 Color.Blue, Color.Red, 1.2f, true); //绘制文本字符串 graphics.DrawString(checkCode, font, brush, 2, 2); //绘制有坐标对、宽度和高度指定的矩形---画图片的边框线 graphics.DrawRectangle(new Pen(Color.Silver), 0, 0, myImage.Width - 1, myImage.Height - 1); //创建其支持存储器为内存的流 MemoryStream ms = new MemoryStream(); //将此图像以指定格式保存到指定的流中 myImage.Save(ms, System.Drawing.Imaging.ImageFormat.Gif); //这里是以gif的格式保存到内存中 HttpContext.Current.Response.ClearContent(); //清除缓冲区流中的所有内容输出 HttpContext.Current.Response.ContentType = "image/Gif"; //获取或设置输出流的HTTP MIME类型 HttpContext.Current.Response.BinaryWrite(ms.ToArray()); //将一个二进制字符串写入HTTP输出流 } finally { //释放占用资源 graphics.Dispose(); myImage.Dispose(); } } }}

3.然后使用SecurityCode.ashx文件调用上面类的方法实现

SecurityCode.ashx
using System;using System.Collections.Generic;using System.Linq;using System.Web;namespace SecurityCodePic{    ///     /// SecurityCode1 的摘要说明    ///     public class SecurityCode1 : IHttpHandler    {        public void ProcessRequest(HttpContext context)        {            DrawingSecurityCode sc = new DrawingSecurityCode();            string SecurityCode = sc.GetSecurityCode(6);        }        public bool IsReusable        {            get            {                return false;            }        }    }}

4.最后就是ASP.NET页面图片路径的引用了

SecurityCode_Test.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SecurityCode_Test.aspx.cs" Inherits="SecurityCodePic.SecurityCode_Test" %>    验证码的实现        
验证码

 

 

PS:如果想学习画图和图像处理,可以看看系列文章 ,我也在看在学习,虽然是比较早的文章了,哈哈!

转载地址:http://nugaa.baihongyu.com/

你可能感兴趣的文章
SharePoint 2013 部署 Part 1
查看>>
DWGSee看图纸dwg文件阅读器免费下载地址
查看>>
高能天气——团队Scrum冲刺阶段-Day 1-领航
查看>>
ISI CVPR journal ranking
查看>>
free movie
查看>>
列表组
查看>>
CF 988E Divisibility by 25 思维 第十二
查看>>
Linux Shell多命令执行
查看>>
Java中的异常处理:何时抛出异常,何时捕获异常,何时处理异常?
查看>>
css3中的变形(transform)、过渡(transtion)、动画(animation)
查看>>
tomcat生产环境JDK部署及虚拟主机等常用配置详解
查看>>
web服务器tomcat入门实战
查看>>
AVEVA CSG 几何图形输出接口
查看>>
POJ 2653 Pick-up sticks(几何)
查看>>
【阶段试题分析】阶段一试题总结
查看>>
Python 模块调用
查看>>
HBase篇--HBase常用优化
查看>>
CMarkUp介绍
查看>>
Java基本语法-----java流程控制语句
查看>>
【面试 网络协议】【第十四篇】网络协议篇
查看>>