12306網站推出“彩色動態驗證碼機制”,新版驗證碼不但經常出現字符疊壓,還不停抖動,不少人大呼“看不清”,稱“那個驗證碼,是畢加索的抽象畫么!”鐵總客服則表示:為了能正常購票只能這樣。而多家搶票軟件接近“報廢”,引發不少網友不滿的吐槽稱“太抽象太藝術了”。
以前做項目有時候也會用到驗證碼,但基本都是靜態的,這次也想湊湊12306的熱鬧。閑言少續,切入正題,先上代碼。
實現方法:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
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" ); } |
調用主要方法:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
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驗證碼的生成方法。