本著簡潔直接,我們就直奔主題吧! 下麵是一個生成數字和字母隨機組合的驗證碼類源代碼: using System; using System.Drawing; using System.Drawing.Imaging; using System.Web.UI; using System.Drawing ...
本著簡潔直接,我們就直奔主題吧!
下麵是一個生成數字和字母隨機組合的驗證碼類源代碼:
using System; using System.Drawing; using System.Drawing.Imaging; using System.Web.UI; using System.Drawing.Drawing2D; using System.IO; namespace Forcheng.Code { /// <summary> /// 生成驗證碼的類 /// </summary> public class ValidateCode { /// <summary> /// 生成驗證碼 /// </summary> /// <param name="length">指定驗證碼的長度</param> /// <returns></returns> public string CreateValidateCode(int length) { const string validateTemplate = "23456789abcdefghijkmnopqrstuvwxyzABCDEFGHIJKLMNPQRSTUVWXYZ"; string validateStr = ""; int n = validateTemplate.Length - 1; //設置隨機值生成器 int seekSeek = unchecked((int)DateTime.Now.Ticks); Random seekRand = new Random(seekSeek); int beginSeek = 0; //生成隨機驗證碼 for (int i = 0; i < length; i++) { beginSeek = seekRand.Next(0, n); validateStr += validateTemplate.Substring(beginSeek, 1); } return validateStr; } /// <summary> /// 創建驗證碼的圖片 /// </summary> /// <param name="containsPage">要輸出到的page對象</param> /// <param name="validateNum">驗證碼</param> public byte[] CreateValidateGraphic(string validateCode) { Bitmap image = new Bitmap((int)Math.Ceiling(validateCode.Length * 13.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.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(); } } } }View Code
下麵是使用驗證碼類的後臺實例代碼(生成一個5位的圖片驗證碼):
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using System.Web.Security; using Forcheng.Code; namespace Test.Controllers { public class HomeController : Controller { /// <summary> /// 獲取圖片驗證碼 /// </summary> /// <returns></returns> public ActionResult GetValidateCode(string codeClass) { ValidateCode vCode = new ValidateCode(); string code = vCode.CreateValidateCode(5); byte[] bytes = vCode.CreateValidateGraphic(code); return File(bytes, @"image/jpeg"); } } }View Code
下麵是前臺頁面使用的實例代碼:
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>圖片驗證碼</title> </head> <body> <img id="valiCode" class="validcode" src="/Home/GetValidateCode" alt="驗證碼" title="點擊刷新" /> <script type="text/javascript"> $(document).ready(function () { $("#valiCode").bind("click", function () { this.src = "/Home/GetValidateCode?&time=" + (new Date()).getTime(); }); }); </script> </body> </html>View Code
效果截圖(做的另一個找回密碼頁面,不是上面的前臺代碼效果):
這次的分享就到這吧,我們下次繼續。
<我的博客主頁>:http://www.cnblogs.com/forcheng/