public class ValidateCode

    {

        /// <summary>

        /// 產生圖形驗證碼。

        /// </summary>

        /// <param name="Code">傳出驗證碼。</param>

        /// <param name="CodeLength">驗證碼字元數。</param>

        /// <param name="Width"></param>

        /// <param name="Height"></param>

        /// <param name="FontSize"></param>

        /// <returns></returns>

        public static byte[] CreateValidateGraphic(out String Code, int CodeLength, int Width, int Height, int FontSize)

        {

            String sCode = String.Empty;

            //顏色列表,用於驗證碼、噪線、噪點

            Color[] oColors ={

             System.Drawing.Color.Black,

             System.Drawing.Color.Red,

             System.Drawing.Color.Blue,

             System.Drawing.Color.Green,

             System.Drawing.Color.Orange,

             System.Drawing.Color.Brown,

             System.Drawing.Color.Brown,

             System.Drawing.Color.DarkBlue

            };

            //字體列表,用於驗證碼

            string[] oFontNames = { "Times New Roman", "MS Mincho", "Book Antiqua", "Gungsuh", "PMingLiU", "Impact" };

            //驗證碼的字元集,去掉了一些容易混淆的字元

            char[] oCharacter = {

       '2','3','4','5','6','8','9',

       'A','B','C','D','E','F','G','H','J','K', 'L','M','N','P','R','S','T','W','X','Y'

      };

            Random oRnd = new Random();

            Bitmap oBmp = null;

            Graphics oGraphics = null;

            int N1 = 0;

            System.Drawing.Point oPoint1 = default(System.Drawing.Point);

            System.Drawing.Point oPoint2 = default(System.Drawing.Point);

            string sFontName = null;

            Font oFont = null;

            Color oColor = default(Color);

//生成驗證碼字串

            for (N1 = 0; N1 <= CodeLength - 1; N1++)

            {

                sCode += oCharacter[oRnd.Next(oCharacter.Length)];

            }

oBmp = new Bitmap(Width, Height);

            oGraphics = Graphics.FromImage(oBmp);

            oGraphics.Clear(System.Drawing.Color.White);

            try

            {

                for (N1 = 0; N1 <= 4; N1++)

                {

                    //畫噪線

                    oPoint1.X = oRnd.Next(Width);

                    oPoint1.Y = oRnd.Next(Height);

                    oPoint2.X = oRnd.Next(Width);

                    oPoint2.Y = oRnd.Next(Height);

                    oColor = oColors[oRnd.Next(oColors.Length)];

                    oGraphics.DrawLine(new Pen(oColor), oPoint1, oPoint2);

                }

float spaceWith = 0, dotX = 0, dotY = 0;

                if (CodeLength != 0)

                {

                    spaceWith = (Width - FontSize * CodeLength - 10) / CodeLength;

                }

for (N1 = 0; N1 <= sCode.Length - 1; N1++)

                {

                    //畫驗證碼字串

                    sFontName = oFontNames[oRnd.Next(oFontNames.Length)];

                    oFont = new Font(sFontName, FontSize, FontStyle.Italic);

                    oColor = oColors[oRnd.Next(oColors.Length)];

dotY = (Height - oFont.Height) / 2 + 2;//中心下移2像素

                    dotX = Convert.ToSingle(N1) * FontSize + (N1 + 1) * spaceWith;

oGraphics.DrawString(sCode[N1].ToString(), oFont, new SolidBrush(oColor), dotX, dotY);

                }

for (int i = 0; i <= 30; i++)

                {

                    //畫噪點

                    int x = oRnd.Next(oBmp.Width);

                    int y = oRnd.Next(oBmp.Height);

                    Color clr = oColors[oRnd.Next(oColors.Length)];

                    oBmp.SetPixel(x, y, clr);

                }

Code = sCode;

                //保存图片数据

                MemoryStream stream = new MemoryStream();

                oBmp.Save(stream, ImageFormat.Jpeg);

                //输出图片流

                return stream.ToArray();

            }

            finally

            {

                oGraphics.Dispose();

            }

        }

    }

//2.2图片流以图片的形式响应到页面

public class ValidateCodeController : Controller

    {

        public ActionResult GetImg()

        {

            int width = ConverterHelper.ObjToInt(Request.Params["width"], 100);

            int height = ConverterHelper.ObjToInt(Request.Params["height"], 40);

            int fontsize = ConverterHelper.ObjToInt(Request.Params["fontsize"], 20);

            string code = string.Empty;

            byte[] bytes = ValidateCode.CreateValidateGraphic(out code, 4, width, height, fontsize);

            SessionHelper.SetValiCode(code);

            return File(bytes, @"image/jpeg");

        }

}

//2.3页面显示及刷新(img+js)

<img id="GL_StandardCode"  style="cursor: pointer;"
src="@Url.Action("GetImg", "ValidateCode")?t=@DateTime.Now.Ticks"
title="看不清,点击换一张" />

$("#GL_StandardCode").click(function () {

                var newSrc = "@Url.Action("GetImg", "ValidateCode")" + "?t=" + (new Date()).getTime();

                this.src=newSrc;

                return false;

            });

//2.4登录时判断SESSION值

string pCode = Request.Params["GL_CodeInput"];

        string sCode = SessionHelper.GetValiCode();

        if (string.IsNullOrEmpty(pCode))

        {

            resultMsg = "请输入验证码";

        }

        else if (string.IsNullOrEmpty(sCode))

        {

            resultMsg = "验证码过期";

        }

        else if (pCode.ToLower() != sCode.ToLower())

        {

            resultMsg = "验证码不正确";

        }

C# mvc 验证码2的更多相关文章

  1. MVC 验证码实现( 简易版)

    现在网站上越来越多的验证码,使用场景也是越来越多,登陆.注册.上传.下载...等等地方,都有可能大量使用到验证码,那么制作验证码到底有多简单呢?我们一起来看下最简易版的验证码实现过程- 验证码的基本步 ...

  2. ASP.NET MVC验证码演示(Ver2)

    前一版本<ASP.NET MVC验证码演示>http://www.cnblogs.com/insus/p/3622116.html,Insus.NET还是使用了Generic handle ...

  3. .NET MVC 验证码

    .NET MVC 验证码

  4. MVC验证码的编写

    主要是相互学习一下mvc,希望各位大神指导 /// <summary> /// 生成随机数字 /// </summary> /// <returns>随机数字< ...

  5. ASP.NET MVC验证码演示

    我们在网站登录或理一个评论时,可以放置一个验证码(Captcha),可以为系统免去那些恶意刷新等功能. 今次Insus.NET在asp.net mvc应用程序实现与演示验证码的产生以及应用等 . 前天 ...

  6. ASP.NET mvc 验证码 (转)

    ASP.net 验证码(C#) MVC http://blog.163.com/xu_shuhao/blog/static/5257748720101022697309/ 网站添加验证码,主要为防止机 ...

  7. mvc验证码图片生成

    /// <summary> ///生成验证码 /// </summary> public class VerifyCode { /// <summary> /// ...

  8. asp.net mvc 验证码

    效果图 验证码类 namespace QJW.VerifyCode { //用法: //public FileContentResult CreateValidate() //{ // Validat ...

  9. 简单C#、asp.net mvc验证码的实现

    using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Text;u ...

  10. C# mvc 验证码3

    //// <summary> /// 生成验证码 /// </summary> /// <param name="length">指定验证码的长 ...

随机推荐

  1. [Redux] Filtering Redux State with React Router Params

    We will learn how adding React Router shifts the balance of responsibilities, and how the components ...

  2. [D3] 5 .rangeBands

    # d3.max ```js var xScale = d3.scale.ordinal() .domain(dataset) .rangeBands([0,w],0.3, 0.1);``` ### ...

  3. 史上比较用心的纯代码实现 AutoLayout

    入职有两三个月了吧,都是使用 Objective-C 纯代码(虽然有时候偷偷参杂一些 Swift 开源库)来编写公司APP,写布局的时候几乎都是要么在初始化的时候用 initWithFrame,要么就 ...

  4. 构建tcpdump/wireshark pcap文件

      pcap文件格式是bpf保存原始数据包的格式,很多软件都在使用,比如tcpdump.wireshark等等,了解pcap格式可以加深对原始数据包的了解,自己也可以手工构造任意的数据包进行测试. p ...

  5. Qss All

    /* * OOMidi application style sheet */QFrame#transportToolButtons{border: 0;spacing: 0;margin: 0;pad ...

  6. AOP 的利器:ASM 3.0 介绍

    引言 什么是 ASM ? ASM 是一个 Java 字节码操控框架.它能被用来动态生成类或者增强既有类的功能.ASM 可以直接产生二进制 class 文件,也可以在类被加载入 Java 虚拟机之前动态 ...

  7. js验证邮箱

    <html>    <head>    <script>   function verifyAddress(obj)    {    var email = obj ...

  8. Core Motion传感器原始数据

    1.访问原始的Motion数据 #import <UIKit/UIKit.h> #import <CoreMotion/CoreMotion.h> @interface Vie ...

  9. Linux下搭建Oracle11g RAC(8)----创建ASM磁盘组

    以grid用户创建ASM磁盘组,创建的ASM磁盘组为下一步创建数据库提供存储. ① grid用户登录图形界面,执行asmca命令来创建磁盘组: ② 进入ASMCA配置界面后,单击Create,创建新的 ...

  10. Linux下搭建Oracle11g RAC(5)----配置ASM磁盘

    将共享磁盘格式化.然后用asmlib将其配置为ASM磁盘,用于将来存放OCR.Voting Disk和数据库用. 注意:只需在其中1个节点上格式化就可以,接下来我们选择在node1节点上格式化. 这里 ...