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

C#驗證碼圖片的繪制方法代碼

編輯:C#入門知識

做個好幾個網站了,但真正在開發過程中一般主要寫業務邏輯的,很少去涉及這個。今天花了幾分鐘幫朋友弄了個驗證碼的繪制,其實網上很多例子。在網站開發過程中,驗證碼技術是保護網站安全的最基本環節,它可以防止非法人員利用注冊攻擊公交或登入工具來攻擊網站。記得幾個月前,才和幾位朋友研究圖片的識別,OCR識別,其主要就是針對網上這些驗證碼進行識別自動注冊。當然自動識別還是比這個難多了,還在研究中,暫時先研究繪制的。

    (一)GenerateCode方法:主要是用來產生隨機字符串。

  /// <summary>
  /// 隨機生成字符串
  /// </summary>
  /// <param name="number">字符串長度</param>
  /// <returns></returns>
  protected string GenerateCode(int number)
  {
  string checkCode = string.Empty;
  string vChar="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,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";
  string[] vcArray = vChar.Split(,);

  int temp = -1;//記錄上次隨機數值,盡量避免產生幾個一樣的隨機數
  Random rand = new Random();
  for (int i = 1; i < number+1; i++)
  {
  if (temp != -1)
  {
  rand = new Random(i * temp * unchecked((int)DateTime.Now.Ticks));
  }
  int t = rand.Next(vcArray.Length);
  if (temp != -1 && temp == t)
  {
  return GenerateCode(number);
  }
  temp = t;
  checkCode += vcArray[t];
  }
  Response.Cookies.Add(new HttpCookie("CheckCode",checkCode));
  
(二)將隨機生成的字符串轉化成驗證碼圖片

  /// <summary>
  /// 生成驗證碼圖片
  /// </summary>
  /// <param name="checkCode">隨機字符串</param>
  private void CreateCheckImage(string checkCode)
  {
  if (checkCode == null || checkCode.Trim() == string.Empty)
  {
  return;
  }

  System.Drawing.Bitmap image = new System.Drawing.Bitmap((int)Math.Ceiling((checkCode.Length*12.5)),22);
  Graphics g = Graphics.FromImage(image);
  try
  {
  Random radom = new Random();
  g.Clear(Color.White);
  for (int i = 0; i < 2; i++)
  {
  int x1 = radom.Next(image.Width);
  int x2 = radom.Next(image.Width);
  int y1 = radom.Next(image.Height);
  int y2 = radom.Next(image.Height);
  g.DrawLine(new Pen(Color.Black), 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(checkCode, font, brush, 2, 2);

  //畫圖片的前景噪音點
  for (int i = 0; i < 50; i++)
  {
  int x = radom.Next(image.Width);
  int y = radom.Next(image.Height);
  image.SetPixel(x, y, Color.FromArgb(radom.Next()));
  }

  //畫圖片的邊框線
  g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1);
  System.IO.MemoryStream ms = new System.IO.MemoryStream();
  image.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
  Response.ClearContent();
  Response.ContentType = "image/Gif";
  Response.BinaryWrite(ms.ToArray());

  }
  catch { }
  finally
  {
  g.Dispose();
  image.Dispose();
  }
  }

 

最後在網頁中添加一個Image控件,用來顯示驗證碼圖片,並將其的ImageUrl屬性設置為驗證碼頁面的名稱。

 

\

    

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