ASP.net 検証コード (C#)
著者:Eve Cole
更新時間:2009-07-01 15:48:32
パブリック クラス ValidateCode : System.Web.UI.Page
{
private void Page_Load(オブジェクト送信者、System.EventArgs e)
{
this.CreateCheckCodeImage(GenerateCheckCode());
}
#region Web フォーム デザイナーが生成したコード
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: この呼び出しは、asp.NET Web フォーム デザイナーに必要です。
//
InitializeComponent();
Base.OnInit(e);
}
/// <概要>
/// デザイナーは必要なメソッドをサポートしています - 変更にはコード エディターを使用しないでください
/// このメソッドの内容。
/// 概要>
private void InitializeComponent()
{
this.Load += 新しい System.EventHandler(this.Page_Load);
}
#エンドリージョン
プライベート文字列 GenerateCheckCode()
{
整数;
文字コード;
文字列 checkCode = String.Empty;
System.Random ランダム = new Random();
for(int i=0; i<5; i++)
{
数値 = ランダム.Next();
if(数値 % 2 == 0)
コード = (文字)('0' + (文字)(数値 % 10));
それ以外
コード = (文字)('A' + (文字)(数値 % 26));
checkCode += code.ToString();
}
Response.Cookies.Add(new HttpCookie("CheckCode", checkCode));
checkCode を返します。
}
private void CreateCheckCodeImage(string checkCode)
{
if(checkCode == null || checkCode.Trim() == String.Empty)
戻る;
System.Drawing.Bitmap 画像 = 新しい System.Drawing.Bitmap((int)Math.Ceiling((checkCode.Length * 12.5)), 22);
グラフィックス g = Graphics.FromImage(image);
試す
{
//ランダムジェネレータを生成する
ランダム ランダム = new Random();
//画像の背景色をクリアします
g.クリア(色.白);
//画像の背景ノイズラインを描画します
for(int i=0; i<25; i++)
{
int x1 = ランダム.Next(image.Width);
int x2 = ランダム.Next(image.Width);
int y1 = ランダム.Next(image.Height);
int y2 = ランダム.Next(image.Height);
g.DrawLine(新しいペン(Color.Silver), x1, y1, x2, y2);
}
Font font = new System.Drawing.Font("Arial", 12, (System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic));
System.Drawing.Drawing2D.LinearGradientBrush ブラシ = new System.Drawing.Drawing2D.LinearGradientBrush(new Rectangle(0, 0, image.Width, image.Height), Color.Blue, Color.DarkRed, 1.2f, true);
g.DrawString(checkCode, フォント, ブラシ, 2, 2);
//画像の前景ノイズポイントを描画します
for(int i=0; i<100; i++)
{
int x = ランダム.Next(image.Width);
int y = ランダム.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 = 新しい System.IO.MemoryStream();
image.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
Response.ClearContent();
Response.ContentType = "画像/Gif";
Response.BinaryWrite(ms.ToArray());
}
ついに
{
g.Dispose();
image.Dispose();
}
}
}
http://www.cnblogs.com/niit007/archive/2006/08/13/475506.html