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 = "p_w_picpath/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;
}
}
}
}

検証コードの効果:
 
16 aspxダウンロード
ローカルダウンロード