-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVerifyCodeImage.cs
249 lines (233 loc) · 7.55 KB
/
VerifyCodeImage.cs
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
namespace AspNetTest.Common
{
using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Web;
public class VerifyCodeImage
{
private bool bool_0 = true;
private Color color_0 = Color.LightGray;
private Color color_1 = Color.White;
private Color[] color_2 = new Color[] { Color.Black, Color.Red, Color.DarkBlue, Color.Green, Color.Orange, Color.Brown, Color.DarkCyan, Color.Purple };
private const double double_0 = 6.2831853071795862;
private int int_0 = 4;
private int int_1 = 50;
private int int_2 = 2;
private string[] string_0 = new string[] { "Arial", "Georgia" };
private string string_1 = "2,3,4,5,6,7,8,9,a,b,c,d,e,f,g,h,j,k,m,n,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,J,K,M,N,P,Q,R,S,T,U,V,W,X,Y,Z";
public Bitmap CreateImage(string code, double multValue)
{
int num6;
int fontSize = this.FontSize;
int num2 = fontSize + this.Padding;
int width = ((code.Length * num2) + 4) + (this.Padding * 2);
int height = (fontSize * 2) + this.Padding;
Bitmap image = new Bitmap(width, height);
Graphics graphics = Graphics.FromImage(image);
graphics.Clear(this.BackgroundColor);
Random random = new Random();
if (this.Chaos)
{
Pen pen = new Pen(this.ChaosColor, 0f);
int num5 = this.Length * 10;
for (num6 = 0; num6 < num5; num6++)
{
int x = random.Next(image.Width);
int y = random.Next(image.Height);
graphics.DrawRectangle(pen, x, y, 1, 1);
}
}
int num9 = 0;
int num10 = 0;
int num11 = 1;
int num12 = 1;
int num13 = (height - this.FontSize) - (this.Padding * 2);
int num14 = num13 / 4;
num11 = num14;
num12 = num14 * 2;
for (num6 = 0; num6 < code.Length; num6++)
{
int index = random.Next(this.Colors.Length - 1);
int num16 = random.Next(this.Fonts.Length - 1);
Font font = new Font(this.Fonts[num16], (float)fontSize, FontStyle.Bold);
Brush brush = new SolidBrush(this.Colors[index]);
if ((num6 % 2) == 1)
{
num10 = num12;
}
else
{
num10 = num11;
}
num9 = num6 * num2;
graphics.DrawString(code.Substring(num6, 1), font, brush, (float)num9, (float)num10);
}
graphics.DrawRectangle(new Pen(Color.Gainsboro, 0f), 0, 0, image.Width - 1, image.Height - 1);
graphics.Dispose();
return this.TwistImage(image, true, multValue, 4.0);
}
public void CreateImageOnPage(string code, double multValue, HttpContext httpContext)
{
MemoryStream stream = new MemoryStream();
Bitmap bitmap = this.CreateImage(code, multValue);
bitmap.Save(stream, ImageFormat.Jpeg);
httpContext.Response.ClearContent();
httpContext.Response.ContentType = "image/Jpeg";
httpContext.Response.BinaryWrite(stream.GetBuffer());
stream.Close();
stream = null;
bitmap.Dispose();
bitmap = null;
}
public string CreateVerifyCode()
{
return this.CreateVerifyCode(0);
}
public string CreateVerifyCode(int codeLength)
{
if (codeLength == 0)
{
codeLength = this.Length;
}
string[] strArray = this.CodeSerial.Split(new char[] { ',' });
string str = "";
int index = -1;
Random random = new Random((int)DateTime.Now.Ticks);
for (int i = 0; i < codeLength; i++)
{
index = random.Next(0, strArray.Length - 1);
str = str + strArray[index];
}
return str;
}
public Bitmap TwistImage(Bitmap srcBmp, bool bXDir, double dMultValue, double dPhase)
{
Bitmap image = new Bitmap(srcBmp.Width, srcBmp.Height);
Graphics graphics = Graphics.FromImage(image);
graphics.FillRectangle(new SolidBrush(Color.White), 0, 0, image.Width, image.Height);
graphics.Dispose();
double num = bXDir ? ((double)image.Height) : ((double)image.Width);
for (int i = 0; i < image.Width; i++)
{
for (int j = 0; j < image.Height; j++)
{
double a = 0.0;
a = bXDir ? ((6.2831853071795862 * j) / num) : ((6.2831853071795862 * i) / num);
a += dPhase;
double num5 = Math.Sin(a);
int x = 0;
int y = 0;
x = bXDir ? (i + ((int)(num5 * dMultValue))) : i;
y = bXDir ? j : (j + ((int)(num5 * dMultValue)));
Color pixel = srcBmp.GetPixel(i, j);
if ((((x >= 0) && (x < image.Width)) && (y >= 0)) && (y < image.Height))
{
image.SetPixel(x, y, pixel);
}
}
}
return image;
}
public Color BackgroundColor
{
get
{
return this.color_1;
}
set
{
this.color_1 = value;
}
}
public bool Chaos
{
get
{
return this.bool_0;
}
set
{
this.bool_0 = value;
}
}
public Color ChaosColor
{
get
{
return this.color_0;
}
set
{
this.color_0 = value;
}
}
public string CodeSerial
{
get
{
return this.string_1;
}
set
{
this.string_1 = value;
}
}
public Color[] Colors
{
get
{
return this.color_2;
}
set
{
this.color_2 = value;
}
}
public string[] Fonts
{
get
{
return this.string_0;
}
set
{
this.string_0 = value;
}
}
public int FontSize
{
get
{
return this.int_1;
}
set
{
this.int_1 = value;
}
}
public int Length
{
get
{
return this.int_0;
}
set
{
this.int_0 = value;
}
}
public int Padding
{
get
{
return this.int_2;
}
set
{
this.int_2 = value;
}
}
}
}