ホームページ >バックエンド開発 >PHPチュートリアル >C# 検証コード生成プログラム_PHP チュートリアル
コード:
System の使用;
System.Data の使用;
System.Configuration の使用;
System.Collections の使用;
System.Web の使用;
System.Web.Security の使用;
System.Web.UI の使用;
System.Web の使用。 UI.WebControls;
System.Web.UI.WebControls.WebParts の使用;
System.Web.UI.HtmlControls の使用;
System.Drawing の使用;
パブリック部分クラス inc_ValidCode : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
VerifyCode v = new VerifyCode();
v.Length = 4;
v.FontSize = 14;
v.Chaos = true;
v.BackgroundColor = Color.White;
v.ChaosColor = Color.LightGray;
//v.CodeSerial = "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、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";
//v.Colors = this.colors;`````````````````````````````````````` '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ```````````````
//v.Fonts = this.fonts;
v.Padding = 2;
string code = v.CreateVerifyCode(); //取随机码
v.CreateImageOnPage(code, this.Context); // 出力画像
//Response.Cookies.Add(new HttpCookie("fcvalidtcode", code.ToUpper()));// Cookies を使用して取验证码的值
Session["bao_code"] = code.ToUpper() ;
}
public class VerifyCode
{
#region 验证码長度(默认6个验证码の長さ)#region 验证码長度(默认6个验证码の長さ)
int length = 6;
public int Length
{
get { 戻り長さ; }
set {長さ = 値; }
}
#endregion
#region 验证符号字体大小(曲効果を表示するため、40 画素を自行修正可能)#region 验证符号字体大(曲効果を表示するため、40 画素を自行修正可能)
t フォントサイズ= 30;
public int FontSize
{
get { return fontSize; }
set { fontSize = 値; }
}
#endregion
#region 边框补(默认1像素)#region 边框补(默认1像素)
int padding = 2;
public int Padding
{
get { return padding; }
set {パディング = 値; }
}
#endregion
#region 否か输出点(默认不输出)#region 否か输出点(默认不输出)
bool Chaos = true;
public bool Chaos
{
get { return Chaos; }
set {カオス = 値; }
}
#endregion
#region 出射点の颜色(默认 grey)#region 出射点の颜色(默认 grey)
Color ChaosColor = Color.LightGray;
public Color ChaosColor
{
get { return ChaosColor; }
set {chaosColor = 値; }
}
#endregion
#region 自定背景色(默认白色)#region 自定背景色(默认白色)
Color BackgroundColor = Color.White;
public Color BackgroundColor
{
get { return backgroundColor; }
set {backgroundColor = 値; }
}
#endregion
#region 自定义随机颜色数组#region 自定义随机颜色数组
Color[] Colors = { Color.Black, Color.Red, Color.DarkBlue, Color.Green, Color.Orange, Color. Brown、Color.DarkCyan、Color.Purple };
public Color[] Colors
{ www.jbxue.com
get { return Colors; }
set {色 = 値; }
}
#endregion
#region 自定义字体数组#region 自定义字体数组
string[] fonts = { "Arial", "Georgia" };
public string[] Fonts
{
get { return fonts; }
set { フォント = 値; }
}
#endregion
#region 自定义随机字文字列列(逗号分間隔)#region 自定义随机字文字列列(逗号分間隔)
string codeSerial = "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、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";
public string CodeSerial
{
get { return codeSerial; }
set { codeSerial = 値; }
}
#endregion
#region 生成波形滤镜效果#region 生成波形滤镜效果
private const double PI = 3.1415926535897932384626433832795;
private const double PI2 = 6.2831 85307179586476925286766559;
/**/
///
/// 正弦波の歪んだ画像 (51aspx.com による編集)
///
/// 画像パス
/// < ;param name="bXDir">歪んでいる場合は True を選択してください
/// 波形の振幅倍数、振幅が大きいほど歪みの度合いが高くなります、通常は 3
/// 波形の開始位相、値の範囲は [0-2*PI)
/// public System.Drawing.Bitmap TwistImage(Bitmap srcBmp, bool bXDir, double dMultValue, double dPhase)
{
System.Drawing.Bitmap destBmp = new Bitmap(srcBmp.Width, srcBmp.Height);
// ビットマップ 背景を白で塗りつぶします
System.Drawing.Graphics chart = System.Drawing.Graphics.FromImage(destBmp);
graph.FillRectangle(new SolidBrush(System.Drawing.Color.White), 0, 0, destBmp.Width, destBmp.Height);
graph.Dispose();
double dBaseAxisLen = bXDir ? (double)destBmp.Height : (double)destBmp.Width;
for (int i = 0; i {
for (int j = 0; j double dx = 0;
dx = bXDir ? / dBaseAxisLen : (PI2 * (double)i) / dBaseAxisLen;
dx += dPhase;
double dy = Math.Sin(dx);
// 現在の点の色を取得します
int nOldX = 0, nOldY = 0 ;
nOldX = bXDir ? i + (int)(dy * dMultValue) : i;
nOldY = bXDir ? j : j + (int)(dy * dMultValue);
System.Drawing.Color color = srcBmp.GetPixel(i) , j);
if (nOldX >
}
#endregion
#region 検証コード画像を生成 #region 検証コード画像を生成
public Bitmap CreateImageCode(string code)
{
int fSize = FontSize;
int fWidth = fSize + Padding ;
int imageWidth = (int )(code.Length * fWidth) + 4 + Padding * 2;
int imageHeight = fSize * 2 + Padding;
System.Drawing.Bitmap image = new System.Drawing.Bitmap(imageWidth, imageHeight );
Graphics g = Graphics .FromImage(image);
g.Clear(BackgroundColor);
Random rand = new Random();
//ランダムに生成されたドライ ポイントを背景に追加します
if (this.Chaos)
{
ペンペン = new Pen(ChaosColor, 0);
int c = 長さ * 10;
for (int i = 0; i < c; i++)
{
int x = rand.Next(image.Width);
int y = rand.Next (image.Height);
g.DrawRectangle(pen, x, y, 1, 1);
}
}
int left = 0、top = 0、top1 = 1、top2 = 1 ;
int n1 = (imageHeight - FontSize - Padding * 2);
int n2 = n1 / 4;
top1 = n2;
top2 = n2 * 2;
フォント f;
ブラシ b;
int cindex, findex;
//ランダムなフォントと色の検証コード文字
for (int i = 0; i
cindex = rand.Next(Colors.Length - 1);
findex = rand.Next(Fonts .Length - 1);
f = new System.Drawing.Font(Fonts[findex], fSize, System.Drawing.FontStyle.Bold);
b = new System.Drawing.SolidBrush(Colors[cindex]);
if (i % 2 == 1)
{
トップ = トップ 2;
}
else
{
トップ = トップ 1;
}
左 = i * fWidth;
g.DrawString(code.Substring(i, 1), f , b, left, top );
}
//Color.Gainsboroで境界線を描画します
g.DrawRectangle(new Pen(Color.Gainsboro, 0), 0, 0, image.Width - 1, image.Height - 1 );
g .Dispose();
//波形を生成 (51aspx.com で追加)
image = TwistImage(image, true, 0, 4);
return image;
}
#endregion
#region 作成した画像をページに出力 #region 作成した画像をページに出力
public void CreateImageOnPage(string code, HttpContext context)
{
System.IO.MemoryStream ms = new System.IO.MemoryStream () ;
ビットマップ画像 = this.CreateImageCode(code);
image.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
context.Response.ClearContent();
context.Response.ContentType = "image /Jpeg ";
context.Response.BinaryWrite(ms.GetBuffer());
ms.Close();
ms = null;
image.Dispose();
image = null;
}
#endregion
#region ランダムを生成文字コード #region ランダムな文字コードを生成します
public string CreateVerifyCode(int codeLen)
{
if (codeLen == 0)
{
codeLen = Length;
}
string[] arr = CodeSerial.Split(',' );
string code = "";
int randValue = -1;
Random rand = new Random(unchecked((int)DateTime.Now.Ticks)));
for (int i = 0; i
randValue = rand.Next(0, arr.Length - 1);
code += arr[randValue];
}
return code;
}
public string CreateVerifyCode()
{
return CreateVerifyCode(0) ;
}
#endregion
}
}