protected void Page_Load (expéditeur d'objet, EventArgs e
)
{
//先产生数字串
chaîne checkCode = this.CreateRandomCode(6);
//用session保存
Session["CheckCode"] = checkCode;
//作图
CreateImage(checkCode);
}
privé void CreateImage (string checkCode)
{
Image System.Drawing.Bitmap = new System.Drawing.Bitmap(Convert.ToInt32(Math.Ceiling((decimal)(checkCode.Length * 14))), 22);
Graphiques g = Graphics.FromImage(image);
essayer
{
Aléatoire aléatoire = new Random();
g.Clair(Couleur.AliceBlue);
pour (int i = 0; i < 25; i++)
{
int x1 = random.Next(image.Width);
int x2 = random.Next(image.Width);
int y1 = random.Next(image.Height);
int y2 = random.Next(image.Height);
g.DrawLine (nouveau stylo (couleur. argent), x1, y1, x2, y2);
}
Police font = new System.Drawing.Font("Comic Sans MS", 12, System.Drawing.FontStyle.Bold);
Brosse System.Drawing.Drawing2D.LinearGradientBrush = new System.Drawing.Drawing2D.LinearGradientBrush (nouveau Rectangle (0, 0, image.Width, image.Height), Color.Blue, Color.DarkRed, 1.2f, true);
g.DrawString(checkCode, font, new SolidBrush(Color.Red), 2, 2);
pour (int i = 0; i < 100; i++)
{
int x = random.Next(image.Width);
int y = random.Next(image.Height);
image.SetPixel(x, y, Color.FromArgb(random.Next()));
}
g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1);
System.IO.MemoryStream ms = new System.IO.MemoryStream();
image.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
Réponse.ClearContent();
Réponse.ContentType = "image/Gif" ;
Réponse.BinaryWrite(ms.ToArray());
}
enfin
{
g.Dispose();
image.Dispose();
}
}
chaîne publique CreateRandomCode (int codeCount)
{
chaîne allChar = "0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F,G,H,I,J,K,L,M, N,O,P,Q,R,S,T,U,V,W,X,Y,Z" ;
string[] allCharArray = allChar.Split(',');
chaîne RandomCode = "" ;
température int = -1 ;
Rand aléatoire = new Random();
pour (int i = 0; i < codeCount; i++)
{
si (temp != -1)
{
rand = new Random(i * temp * ((int)DateTime.Now.Ticks));
}
int t = rand.Next(36);
si (temp != -1 && temp == t)
{
retourner CreateRandomCode (codeCount);
}
température = t ;
randomCode += allCharArray[t];
}
renvoie le code aléatoire ;
}
http://www.cnblogs.com/jackyrong/archive/2006/08/25/486281.html