中文字幕日韩一区二区_国产一区二区av_国产毛片av_久久久久国产一区_色婷婷电影_国产一区二区精品

asp.net下中文驗(yàn)證碼,免費(fèi)開源代碼

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");

//調(diào)用函數(shù)產(chǎn)生4個(gè)隨機(jī)中文漢字編碼 
object[] bytes = CreateRegionCode(4);

//根據(jù)漢字編碼的字節(jié)數(shù)組解碼出中文漢字 
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[])));

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

}

/* 
此函數(shù)在漢字編碼范圍內(nèi)隨機(jī)創(chuàng)建含兩個(gè)元素的十六進(jìn)制字節(jié)數(shù)組,每個(gè)字節(jié)數(shù)組代表一個(gè)漢字,并將 
四個(gè)字節(jié)數(shù)組存儲(chǔ)在object數(shù)組中。 
參數(shù):strlength,代表需要產(chǎn)生的漢字個(gè)數(shù) 
*/
public static object[] CreateRegionCode(int strlength) 

//定義一個(gè)字符串?dāng)?shù)組儲(chǔ)存漢字編碼的組成元素 
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(); 

//定義一個(gè)object數(shù)組用來 
object[] bytes=new object[strlength]; 

/**//*每循環(huán)一次產(chǎn)生一個(gè)含兩個(gè)元素的十六進(jìn)制字節(jié)數(shù)組,并將其放入bject數(shù)組中 
每個(gè)漢字有四個(gè)區(qū)位碼組成 
區(qū)位碼第1位和區(qū)位碼第2位作為字節(jié)數(shù)組第一個(gè)元素 
區(qū)位碼第3位和區(qū)位碼第4位作為字節(jié)數(shù)組第二個(gè)元素 
*/ 
for(int i=0;i<strlength;i++) 

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

//區(qū)位碼第2位 
rnd=new Random(r1*unchecked((int)DateTime.Now.Ticks)+i);//更換隨機(jī)數(shù)發(fā)生器的種子避免產(chǎn)生重復(fù)值 
int r2; 
if (r1==13) 

r2=rnd.Next(0,7); 

else 

r2=rnd.Next(0,16); 

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

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

//區(qū)位碼第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(); 

//定義兩個(gè)字節(jié)變量存儲(chǔ)產(chǎn)生的隨機(jī)漢字區(qū)位碼 
byte byte1=Convert.ToByte(str_r1 + str_r2,16); 
byte byte2=Convert.ToByte(str_r3 + str_r4,16); 
//將兩個(gè)字節(jié)變量存儲(chǔ)在字節(jié)數(shù)組中 
byte[] str_r=new byte[]{byte1,byte2}; 

//將產(chǎn)生的一個(gè)漢字的字節(jié)數(shù)組放入object數(shù)組中 
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();
}



該文章轉(zhuǎn)載自'大智の博客':http://www.csafe.cn/article.ASP?id=1274 

AspNet技術(shù)asp.net下中文驗(yàn)證碼,免費(fèi)開源代碼,轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 久久中文免费视频 | 卡通动漫第一页 | 亚洲天堂av网 | 岛国在线免费观看 | 五月天综合影院 | 亚洲视频三区 | 欧洲尺码日本国产精品 | 久久精品综合网 | 欧美在线一区二区三区 | avhd101在线成人播放 | 国产精品欧美一区二区三区不卡 | 天天天操 | 免费视频一区二区 | 高清亚洲| 亚洲成人一级 | 日韩一区二区三区在线 | www日韩高清| 日韩一级二级片 | 午夜日韩精品 | 久久久99国产精品免费 | 色妹子综合网 | 精品在线一区二区 | 久久久影院 | 中日字幕大片在线播放 | 成人九色| 91高清视频在线观看 | 亚洲精久 | 精品久久久久久亚洲精品 | 久久国产传媒 | 国产视频一区二区在线观看 | 日韩欧美国产一区二区三区 | 九九九久久国产免费 | 人人干97 | 日韩在线观看中文字幕 | 久久久九九九九 | 精品久久久久久久久久久久 | 在线播放国产一区二区三区 | 视频在线一区 | 激情一区二区三区 | 在线观看国产视频 | 国产欧美日韩 |