The asp. net mvc verification code class uses the

  • 2021-09-11 19:53:55
  • OfStack

Verification code class


namespace QJW.VerifyCode
{
  // Usage: 
  //public FileContentResult CreateValidate()
  //{
  //  ValidateCode vCode = new ValidateCode();
  //  string code = vCode.CreateValidateCode(5);
  //  Session["ValidateCode"] = code;
  //  byte[] bytes = vCode.CreateValidateGraphic(code);
  //  return File(bytes, "image/JPEG");
  //}


  public class ValidateCode
  {
    public ValidateCode()
    {
    }
    /// <summary>
    ///  Maximum length of verification code 
    /// </summary>
    public int MaxLength
    {
      get { return 10; }
    }
    /// <summary>
    ///  Minimum length of verification code 
    /// </summary>
    public int MinLength
    {
      get { return 1; }
    }
    /// <summary>
    ///  Generate verification code 
    /// </summary>
    /// <param name="length"> Specify the length of the verification code </param>
    /// <returns></returns>
    public string CreateValidateCode(int length)
    {
      int[] randMembers = new int[length];
      int[] validateNums = new int[length];
      string validateNumberStr = "";
      // Generate the starting sequence value 
      int seekSeek = unchecked((int)DateTime.Now.Ticks);
      Random seekRand = new Random(seekSeek);
      int beginSeek = (int)seekRand.Next(0, Int32.MaxValue - length * 10000);
      int[] seeks = new int[length];
      for (int i = 0; i < length; i++)
      {
        beginSeek += 10000;
        seeks[i] = beginSeek;
      }
      // Generate random numbers 
      for (int i = 0; i < length; i++)
      {
        Random rand = new Random(seeks[i]);
        int pownum = 1 * (int)Math.Pow(10, length);
        randMembers[i] = rand.Next(pownum, Int32.MaxValue);
      }
      // Extract random numbers 
      for (int i = 0; i < length; i++)
      {
        string numStr = randMembers[i].ToString();
        int numLength = numStr.Length;
        Random rand = new Random();
        int numPosition = rand.Next(0, numLength - 1);
        validateNums[i] = Int32.Parse(numStr.Substring(numPosition, 1));
      }
      // Generate verification code 
      for (int i = 0; i < length; i++)
      {
        validateNumberStr += validateNums[i].ToString();
      }
      return validateNumberStr;
    }
    /// <summary>
    ///  Create a picture of the verification code 
    /// </summary>
    /// <param name="containsPage"> To output to page Object </param>
    /// <param name="validateNum"> Verification code </param>
    public byte[] CreateValidateGraphic(string validateCode)
    {
      Bitmap image = new Bitmap((int)Math.Ceiling(validateCode.Length * 12.0), 22);
      Graphics g = Graphics.FromImage(image);
      try
      {
        // Generate random generator 
        Random random = new Random();
        // Clear the background color of the picture 
        g.Clear(Color.White);
        // Draw the interference line of the picture 
        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);
        // Draw the foreground interference point of the picture 
        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()));
        }
        // Draw the border line of the picture 
        g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1);
        // Save picture data 
        MemoryStream stream = new MemoryStream();
        image.Save(stream, ImageFormat.Jpeg);
        // Output picture stream 
        return stream.ToArray();
      }
      finally
      {
        g.Dispose();
        image.Dispose();
      }
    }
    /// <summary>
    ///  Get the length of the verification code picture 
    /// </summary>
    /// <param name="validateNumLength"> Length of verification code </param>
    /// <returns></returns>
    public static int GetImageWidth(int validateNumLength)
    {
      return (int)(validateNumLength * 12.0);
    }
    /// <summary>
    ///  Get the height of the verification code 
    /// </summary>
    /// <returns></returns>
    public static double GetImageHeight()
    {
      return 22.5;
    }
  }
}

Usage


    public FileContentResult CreateValidate()
    {
      ValidateCode vCode = new ValidateCode();
      string code = vCode.CreateValidateCode(5);
      Session["ValidateCode"] = code;
      byte[] bytes = vCode.CreateValidateGraphic(code);

      return File(bytes, "image/JPEG");
    }

HTML
< a href="javascript:;" onclick="reloadcode();" > < img id="safecode" src="/common/CreateValidate" alt="" / > < /a >
View JS


function reloadcode() {
    var verify = document.getElementById('safecode');
    verify.setAttribute('src', '/common/CreateValidate?' + Math.random());
  }

Related articles: