using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Text;
namespace RandomChineseCode
{
/// <summary>
/// RandomChineseCode 的摘要說明。
/// </summary>
public class RandomChineseCode : System.Web.UI.Page
{
private void Page_Load(object sender, System.EventArgs e)
{
// 在此處放置使用者代碼以初始化頁面
string checkCode = ConvertChinese(4);
this.Session["CheckCode"] = checkCode;
CreateImage(checkCode);
}
#region Web Form設計器產生的程式碼
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 該調用是 ASP.NET Web Form設計器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 設計器支援所需的方法 - 不要使用代碼編輯器修改
/// 此方法的內容。
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
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 string ConvertChinese(int len)
{
//擷取GB2312編碼頁(表)
Encoding gb=Encoding.GetEncoding("gb2312");
//調用函數產生4個隨機中文漢字編碼
object[] bytes=CreateRegionCode(len);
//根據漢字編碼的位元組數組解碼出中文漢字
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[])));
return str1 + str2 +str3 +str4;
}
private void CreateImage(string checkCode)
{
int iwidth = (int)(checkCode.Length * 18);
System.Drawing.Bitmap image = new System.Drawing.Bitmap(iwidth, 20);
Graphics g = Graphics.FromImage(image);
Font f = new System.Drawing.Font("Arial", 10, 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.Coral);
//這兩種方法都可以改變產生圖片的背景顏色
g.DrawString(checkCode, f, b, 3, 3);
// //下面那個for迴圈用來產生一些隨機的水平線
// Pen blackPen = new Pen(Color.Tomato, 0);
// Random rand = new Random();
// for (int i=0;i<2;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/Jpeg";
Response.BinaryWrite(ms.ToArray());
g.Dispose();
image.Dispose();
}
}
}