12306 동적 인증 코드 계발 의 ASP.NET 동적 GIF 인증 코드 실현(소스 코드 첨부)

12306 사이트 에서'컬러 동적 인증 코드 체제'를 출시 했다.새 인증 코드 는 문자 중첩 이 자주 나타 날 뿐만 아니 라 계속 떨 리 기 때문에 많은 사람들 이'잘 보이 지 않 는 다'고 소 리 쳤 다.'그 인증 코드 는 피 카 소의 추상 화 입 니까?'철 총 고객 은 정상 적 인 티켓 구 매 를 위해 서 는 그 럴 수 밖 에 없다 고 말 했다.반면 여러 티켓 강탈 앱 이'폐기'에 가 까 워 많은 네티즌 들 이"너무 추상 적 이 고 예술 적"이 라 고 불만 을 토로 하고 있다.
예전 에 프로젝트 를 할 때 인증 코드 를 사용 하기 도 했 지만 대체적으로 정태 적 이 었 고 이번에 도 12306 의 떠들썩 함 을 모 으 려 고 했다.잡담 은 적 게 하고,본론 으로 들 어가 코드 를 먼저 올 려 라.
실현 방법:

 public void ShowCode()
    {
      //     
      Validate GifValidate = new Validate();

      #region         (      ,       )
      //     ,   4 
      GifValidate.ValidateCodeCount = 4;
      //       (  13)
      GifValidate.ValidateCodeSize = 13;
      //       ,    ,            
      GifValidate.ImageHeight = 23;
      //          (       )
      GifValidate.DrawColor = System.Drawing.Color.BlueViolet;
      //     (            )
      GifValidate.ValidateCodeFont = "Arial";
      //           
      GifValidate.FontTextRenderingHint = false;
      //           (","  ),         
      GifValidate.AllChar = "1,2,3,4,5,6,7,8,9,0,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";
      #endregion

      //    (Session  )
      GifValidate.OutPutValidate("GetCode");
    }
주요 호출 방법:

public class Validate
  {
    public string AllChar = "1,2,3,4,5,6,7,8,9,0,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";
    public Color DrawColor = Color.BlueViolet;
    public bool FontTextRenderingHint = false;
    public int ImageHeight = 0x17;
    private byte TrueValidateCodeCount = 4;
    protected string ValidateCode = "";
    public string ValidateCodeFont = "Arial";
    public float ValidateCodeSize = 13f;

    private void CreateImageBmp(out Bitmap ImageFrame)
    {
      char[] chArray = this.ValidateCode.ToCharArray(0, this.ValidateCodeCount);
      int width = (int) (((this.TrueValidateCodeCount * this.ValidateCodeSize) * 1.3) + 4.0);
      ImageFrame = new Bitmap(width, this.ImageHeight);
      Graphics graphics = Graphics.FromImage(ImageFrame);
      graphics.Clear(Color.White);
      Font font = new Font(this.ValidateCodeFont, this.ValidateCodeSize, FontStyle.Bold);
      Brush brush = new SolidBrush(this.DrawColor);
      int maxValue = (int) Math.Max((float) ((this.ImageHeight - this.ValidateCodeSize) - 3f), (float) 2f);
      Random random = new Random();
      for (int i = 0; i < this.TrueValidateCodeCount; i++)
      {
        int[] numArray = new int[] { (((int) (i * this.ValidateCodeSize)) + random.Next(1)) + 3, random.Next(maxValue) };
        Point point = new Point(numArray[0], numArray[1]);
        if (this.FontTextRenderingHint)
        {
          graphics.TextRenderingHint = TextRenderingHint.SingleBitPerPixel;
        }
        else
        {
          graphics.TextRenderingHint = TextRenderingHint.AntiAlias;
        }
        graphics.DrawString(chArray[i].ToString(), font, brush, (PointF) point);
      }
      graphics.Dispose();
    }

    private void CreateImageGif()
    {
      AnimatedGifEncoder encoder = new AnimatedGifEncoder();
      MemoryStream stream = new MemoryStream();
      encoder.Start();
      encoder.SetDelay(5);
      encoder.SetRepeat(0);
      for (int i = 0; i < 10; i++)
      {
        Bitmap bitmap;
        this.CreateImageBmp(out bitmap);
        this.DisposeImageBmp(ref bitmap);
        bitmap.Save(stream, ImageFormat.Png);
        encoder.AddFrame(Image.FromStream(stream));
        stream = new MemoryStream();
      }
      encoder.OutPut(ref stream);
      HttpContext.Current.Response.ClearContent();
      HttpContext.Current.Response.ContentType = "image/Gif";
      HttpContext.Current.Response.BinaryWrite(stream.ToArray());
      stream.Close();
      stream.Dispose();
    }

    private void CreateValidate()
    {
      this.ValidateCode = "";
      string[] strArray = this.AllChar.Split(new char[] { ',' });
      int index = -1;
      Random random = new Random();
      for (int i = 0; i < this.ValidateCodeCount; i++)
      {
        if (index != -1)
        {
          random = new Random((i * index) * ((int) DateTime.Now.Ticks));
        }
        int num3 = random.Next(0x23);
        if (index == num3)
        {
          this.CreateValidate();
        }
        index = num3;
        this.ValidateCode = this.ValidateCode + strArray[index];
      }
      if (this.ValidateCode.Length > this.TrueValidateCodeCount)
      {
        this.ValidateCode = this.ValidateCode.Remove(this.TrueValidateCodeCount);
      }
    }

    private void DisposeImageBmp(ref Bitmap ImageFrame)
    {
      Graphics graphics = Graphics.FromImage(ImageFrame);
      Pen pen = new Pen(this.DrawColor, 1f);
      Random random = new Random();
      Point[] pointArray = new Point[2];
      for (int i = 0; i < 15; i++)
      {
        pointArray[0] = new Point(random.Next(ImageFrame.Width), random.Next(ImageFrame.Height));
        pointArray[1] = new Point(random.Next(ImageFrame.Width), random.Next(ImageFrame.Height));
        graphics.DrawLine(pen, pointArray[0], pointArray[1]);
      }
      graphics.Dispose();
    }

    public void OutPutValidate(string ValidateCodeSession)
    {
      this.CreateValidate();
      this.CreateImageGif();
      HttpContext.Current.Session[ValidateCodeSession] = this.ValidateCode;
    }

    public byte ValidateCodeCount
    {
      get
      {
        return this.TrueValidateCodeCount;
      }
      set
      {
        if (value > 4)
        {
          this.TrueValidateCodeCount = value;
        }
      }
    }
  }
인증번호 효과:       ----- 원본 코드 다운로드 -----
이상 은 ASP.NET 을 실현 하 는 모든 과정 입 니 다.소스 코드 도 첨부 되 어 있 습 니 다.ASP.NET 인증 코드 의 생 성 방법 을 잘 알 수 있 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기