C#-ASP.NET 自动生成验证码

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/wpg_boke/article/details/52202214

 页面代码:

 <!-- 加载时 自动获取验证码 执行路径:Url.Content("~/Account/SecurityCode") -->
                <img alt="验证码图片" id="Img1" title="看不清?点击换一个" src="<%=Url.Content("~/Account/SecurityCode") %>" onclick="this.src=this.src+'?'" />



#region  生成验证码图片

        //[OutputCache(Location = OutputCacheLocation.None, Duration = 0, NoStore = false)]
        public ActionResult SecurityCode()
        {
            //执行当前类的 CreateRandomCode(int codeCount) 方法 ,生成随机的字符串,字符串长度为 5 位
            string code = CreateRandomCode(5);
            TempData["SecurityCode"] = code;
            return File(CreateValidateGraphic(code), "image/Jpeg");
        }


        /// <summary>
        /// 生成随机的字符串
        /// </summary>
        private string CreateRandomCode(int codeCount)
        {
            string allChar = "0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,W,X,Y,Z";
            //将allChar这个字符串用逗号“,”进行分割 ;分割后的字符串数组放在 allCharArray[] 中
            string[] allCharArray = allChar.Split(',');
            string randomCode = "";
            int temp = -1;
            Random rand = new Random();
            //字符串长度为 codeCount,比如:5 位 codeCount =5; 循环 5遍,每次生成一个数字,作为数组的下标
            for (int i = 0; i < codeCount; i++)
            {
                if (temp != -1)
                {
                    /*  Random(参数) 中的参数名为:“种子值” 作用:
                        计算机的“随机数”并非真的“随机数”,而是伪随机数——也就是通过一系列算法,从一个起始数字开始按照一定规则算出来的。 
                        你可以做个测试:把你的"new Random(x)"里面的x设置成一个固定数字,例如1,多次运行程序打印随机数,你会发现每次运行打印出来的数字都是一样的。
                        Random(i * temp * ((int)DateTime.Now.Ticks)) 使用指定的“种子值”初始化 Random 类的新实例。
                    */
                    //种子值 == i=当前循环次数 * temp=上次循环生成的随机数 * 参数((int)DateTime.Now.Ticks)=获取表示此实例的日期和时间的刻度数;
                    rand = new Random(i * temp * ((int)DateTime.Now.Ticks));
                }
                //返回一个小于所指定最大值‘35’非负数的随机数
                int t = rand.Next(35);
                if (temp == t)
                {
                    return CreateRandomCode(codeCount);
                }
                temp = t;
                randomCode += allCharArray[t];
            }
            return randomCode;
        }
        /// <summary>
        /// 创建验证码的图片
        /// </summary>
        public byte[] CreateValidateGraphic(string validateCode)
        {
            //图像对象  Bitmap 
            Bitmap image = new Bitmap((int)Math.Ceiling(validateCode.Length * 16.0), 27);
            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", 13, (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();
            }
        }
        #endregion

猜你喜欢

转载自blog.csdn.net/wpg_boke/article/details/52202214