程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C# 產生驗證碼 利用背景圖片繪制

C# 產生驗證碼 利用背景圖片繪制

編輯:C#入門知識

/// <summary>  
       /// 獲取驗證碼【字符串】  
       /// </summary>  
       /// <param name="Length">驗證碼長度【必須大於0】</param>  
       /// <returns></returns>  
       public static string VerficationText(int Length)  
       {  
           char[] _verfication=new char[Length];  
           Random _random = new Random();  
           char[] _dictionary = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };  
           for (int i = 0; i < Length; i++)  
           {  
               _verfication[i] = _dictionary[_random.Next(_dictionary.Length - 1)];  
           }  
           return new string(_verfication);  
       }  

   
/// <summary>  
       /// 產生驗證碼方法  
       /// </summary>  
       /// <returns></returns>  
       public void VerificationCode()  
       {  
           int _verificationLength = 6;  
           int _width = 100, _height = 20;  
           SizeF _verificationTextSize;  
           string path = Server.MapPath("~/Skins/Commmon/Texture.jpg");//使用一張背景圖  
           Bitmap _bitmap = new Bitmap(path);  
           TextureBrush _brush = new TextureBrush(_bitmap);  
           //獲取驗證碼  
           string _verificationText = VerficationText(_verificationLength);  
           //儲存驗證碼  
           Session["VerificationCode"] = _verificationText.ToUpper();  
           Font _font = new Font("Arial", 14, FontStyle.Bold);  
           Bitmap _image = new Bitmap(_width, _height);  
           Graphics _g = Graphics.FromImage(_image);  
           //清空背景色  
           _g.Clear(Color.White);  
           //繪制驗證碼  
           _verificationTextSize = _g.MeasureString(_verificationText, _font);  
           _g.DrawString(_verificationText, _font, _brush, (_width - _verificationTextSize.Width) / 2, (_height - _verificationTextSize.Height) / 2);  
           _image.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);  
       }  

 

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved