国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

asp.net下中文驗證碼,免費開源代碼

2024-07-10 13:14:34
字體:
來源:轉載
供稿:網友
using System; 
using System.Data; 
using System.Configuration; 
using System.Collections; 
using System.Web; 
using System.Web.Security; 
using System.Web.UI; 
using System.Web.UI.WebControls; 
using System.Web.UI.WebControls.WebParts; 
using System.Web.UI.HtmlControls; 
using System.Text; 
using System.Drawing; 

public partial class CnCode : System.Web.UI.Page 

protected void Page_Load(object sender, EventArgs e) 

//獲取GB2312編碼頁(表) 
Encoding gb = Encoding.GetEncoding("gb2312"); 

//調用函數產生4個隨機中文漢字編碼 
object[] bytes = CreateRegionCode(4); 

//根據漢字編碼的字節數組解碼出中文漢字 
string str1 = gb.GetString((byte[])Convert.ChangeType(bytes[0], typeof(byte[]))); 
string str2 = gb.GetString((byte[])Convert.ChangeType(bytes[1], typeof(byte[]))); 
string str3 = gb.GetString((byte[])Convert.ChangeType(bytes[2], typeof(byte[]))); 
string str4 = gb.GetString((byte[])Convert.ChangeType(bytes[3], typeof(byte[]))); 

//輸出的控制臺 
CreateImage(str1 + str2 + str3 + str4); 



/* 
此函數在漢字編碼范圍內隨機創建含兩個元素的十六進制字節數組,每個字節數組代表一個漢字,并將
四個字節數組存儲在object數組中。 
參數:strlength,代表需要產生的漢字個數 
*/ 
public static object[] CreateRegionCode(int strlength) 

//定義一個字符串數組儲存漢字編碼的組成元素 
string[] rBase=new String [16]{"0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"}; 

Random rnd=new Random(); 

//定義一個object數組用來 
object[] bytes=new object[strlength]; 

/**//*每循環一次產生一個含兩個元素的十六進制字節數組,并將其放入bject數組中 
每個漢字有四個區位碼組成 
區位碼第1位和區位碼第2位作為字節數組第一個元素 
區位碼第3位和區位碼第4位作為字節數組第二個元素 
*/ 
for(int i=0;i<strlength;i++) 

//區位碼第1位 
int r1=rnd.Next(11,14); 
string str_r1=rBase[r1].Trim(); 

//區位碼第2位 
rnd=new Random(r1*unchecked((int)DateTime.Now.Ticks)+i);//更換隨機數發生器的種子避免產生重復值 
int r2; 
if (r1==13) 

r2=rnd.Next(0,7); 

else 

r2=rnd.Next(0,16); 

string str_r2=rBase[r2].Trim(); 

//區位碼第3位 
rnd=new Random(r2*unchecked((int)DateTime.Now.Ticks)+i); 
int r3=rnd.Next(10,16); 
string str_r3=rBase[r3].Trim(); 

//區位碼第4位 
rnd=new Random(r3*unchecked((int)DateTime.Now.Ticks)+i); 
int r4; 
if (r3==10) 

r4=rnd.Next(1,16); 

else if (r3==15) 

r4=rnd.Next(0,15); 

else 

r4=rnd.Next(0,16); 

string str_r4=rBase[r4].Trim(); 

//定義兩個字節變量存儲產生的隨機漢字區位碼 
byte byte1=Convert.ToByte(str_r1 + str_r2,16); 
byte byte2=Convert.ToByte(str_r3 + str_r4,16); 
//將兩個字節變量存儲在字節數組中 
byte[] str_r=new byte[]{byte1,byte2}; 

//將產生的一個漢字的字節數組放入object數組中 
bytes.SetValue(str_r,i); 



return bytes; 




private void CreateImage(string checkCode) 

int iwidth = (int)(checkCode.Length * 25); 
System.Drawing.Bitmap image = new System.Drawing.Bitmap(iwidth, 20); 
Graphics g = Graphics.FromImage(image); 
Font f = new System.Drawing.Font("Arial", 12, System.Drawing.FontStyle.Bold); 
Brush b = new System.Drawing.SolidBrush(Color.White); 
//g.FillRectangle(new System.Drawing.SolidBrush(Color.Blue),0,0,image.Width, image.Height); 
g.Clear(Color.Blue); 
g.DrawString(checkCode, f, b, 3, 3); 

Pen blackPen = new Pen(Color.Black, 0); 
Random rand = new Random(); 
for (int i = 0; i < 4; i++) 

int y = rand.Next(image.Height); 
g.DrawLine(blackPen, 0, y, image.Width, y); 


System.IO.MemoryStream ms = new System.IO.MemoryStream(); 
image.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg); 
Response.ClearContent(); 
Response.ContentType = "image/png"; 
Response.BinaryWrite(ms.ToArray()); 
g.Dispose(); 
image.Dispose(); 




該文章轉載自'大智の博客':http://www.csafe.cn/article.asp?id=1274 
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 永春县| 建瓯市| 平果县| 甘谷县| 阳曲县| 禄丰县| 邻水| 灯塔市| 濮阳县| 陇西县| 岗巴县| 图片| 沧源| 高阳县| 墨玉县| 龙州县| 金寨县| 科尔| 沐川县| 通州市| 墨江| 德安县| 甘肃省| 博白县| 岳普湖县| 永胜县| 平定县| 长垣县| 砚山县| 安康市| 甘洛县| 阿巴嘎旗| 察隅县| 长寿区| 从化市| 阳东县| 余姚市| 麻江县| 泰兴市| 榆中县| 桦甸市|