国产一级a片免费看高清,亚洲熟女中文字幕在线视频,黄三级高清在线播放,免费黄色视频在线看

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
C#制作加減法等功能齊全的驗(yàn)證碼
userphoto

2023.04.15 泰國(guó)

關(guān)注

先看下代碼,最后再看效果,代碼如下:

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Drawing.Drawing2D;using System.IO;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;namespace winform驗(yàn)證碼{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } //-------------這個(gè)就是最后的驗(yàn)證碼的結(jié)果------------- string ther = null; void getyzm() { //初始化驗(yàn)證碼 MYYZM yzm = new MYYZM(0, MYYZM.CodeType.Romdom, false); //生成顯示驗(yàn)證碼圖像 pictureBox1.Image = Bitmap.FromStream(yzm.CreateCheckCodeImage(out ther)); } private void Form1_Load(object sender, EventArgs e) { //1、窗體啟動(dòng)時(shí)產(chǎn)生驗(yàn)證碼 getyzm(); } private void pictureBox1_Click(object sender, EventArgs e) { //2、點(diǎn)擊驗(yàn)證碼時(shí)更換 getyzm(); } private void button1_Click(object sender, EventArgs e) { //3、判斷驗(yàn)證碼正誤 string inputstr = textBox1.Text; if(inputstr.Equals(ther)) { MessageBox.Show('正確!'); } else { MessageBox.Show('錯(cuò)誤!'); } } public class MYYZM { #region 私有字段 private const double PI = 3; private const double PI2 = 6; //驗(yàn)證碼區(qū)分大小寫 private bool _qfdxx; //驗(yàn)證碼字符數(shù)量 private int _len; //驗(yàn)證碼類型 private CodeType _codetype; private readonly Single _jianju = (float)18.0; private readonly Single _height = (float)24.0; private string _checkCode; private string _checkResult; //左空隙 private int leftspace = 10; #endregion #region 屬性 public string MYYZMcode { get { return _checkCode; } } #endregion #region 構(gòu)造函數(shù) /// <summary> /// public constructors /// </summary> /// <param name='len'> 驗(yàn)證碼長(zhǎng)度 </param> /// <param name='ctype'> 驗(yàn)證碼類型:字母、數(shù)字、字母 數(shù)字、算數(shù) </param> public MYYZM(int len, CodeType ctype, bool qfdxx) { _qfdxx = qfdxx; Random random = new Random(); if (len == 0) { _len = random.Next(4, 7); } else { this._len = len; } if (ctype == CodeType.Romdom) { int n = random.Next(1, 6); switch (n) { case 1: this._codetype = CodeType.Alphas; break; case 2: this._codetype = CodeType.Characters; break; case 3: this._codetype = CodeType.Numbers; break; case 4: this._codetype = CodeType.Words; break; case 5: this._codetype = CodeType.SuanShu; break; default: this._codetype = CodeType.Alphas; break; } } else { this._codetype = ctype; } } #endregion #region 共有變量 /// <summary> /// ?驗(yàn)證碼類型:字母、數(shù)字、字母 數(shù)字 /// </summary> public enum CodeType { Romdom, Words, Numbers, Characters, Alphas, SuanShu } #endregion #region 私有方法 private string GenerateNumbers() { string strOut = ''; System.Random random = new Random(); for (int i = 0; i < _len; i ) { string num = Convert.ToString(random.Next(10000) % 10); strOut = num; } return strOut.Trim(); } private string GenerateCharacters() { string strOut = ''; System.Random random = new Random(); for (int i = 0; i < _len; i ) { string num = Convert.ToString((char)(65 random.Next(10000) % 26)); strOut = num; } return strOut.Trim(); } // private string GenerateAlphas() { string strOut = ''; string num = ''; System.Random random = new Random(); for (int i = 0; i < _len; i ) { if (random.Next(500) % 2 == 0) { num = Convert.ToString(random.Next(10000) % 10); } else { num = Convert.ToString((char)(65 random.Next(10000) % 26)); } strOut = num; } return strOut.Trim(); } private string GenerateSuanShu() { string strOut = ''; System.Random random = new Random(); int a = random.Next(1, 10); int b = random.Next(1, 10); if (a < b) { int t = a; a = b; ; b = t; } string fh = ' '; int jiajian = random.Next(1, 3); if (jiajian == 1) { fh = '-'; _checkResult = (a - b).ToString(); } else { fh = ' '; _checkResult = (a b).ToString(); } strOut = a fh b; return strOut.Trim(); } private 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 graph = 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 < destBmp.Width; i ) { for (int j = 0; j < destBmp.Height; j ) { double dx = 0; dx = bXDir ? (PI2 * (double)j) / dBaseAxisLen : (PI2 * (double)i) / dBaseAxisLen; dx = dPhase; double dy = Math.Sin(dx); // 取得當(dāng)前點(diǎn)的顏色 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 >= 0 && nOldX < destBmp.Width && nOldY >= 0 && nOldY < destBmp.Height) { destBmp.SetPixel(nOldX, nOldY, color); } } } return destBmp; } #endregion #region 共有方法 /// <summary> /// 產(chǎn)生驗(yàn)證碼的方法 /// </summary> /// <returns></returns> public Stream CreateCheckCodeImage(out string MYYZMCode) { string checkCode; switch (_codetype) { case CodeType.Alphas: checkCode = GenerateAlphas(); break; case CodeType.Numbers: checkCode = GenerateNumbers(); break; case CodeType.Characters: checkCode = GenerateCharacters(); break; case CodeType.SuanShu: checkCode = GenerateSuanShu(); break; default: checkCode = GenerateAlphas(); break; } if (_codetype == CodeType.SuanShu) { _checkCode = _checkResult; } else { _checkCode = checkCode; } if (_qfdxx) //區(qū)分大小寫 { MYYZMCode = _checkCode; } else { _checkCode = _checkCode.ToLower(); MYYZMCode = _checkCode.ToLower(); } MemoryStream ms = null; // if (checkCode == null || checkCode.Trim() == String.Empty) return null; Bitmap image = new System.Drawing.Bitmap((int)Math.Ceiling((checkCode.Length * _jianju) leftspace leftspace), (int)_height); Graphics g = Graphics.FromImage(image); try { Random random = new Random(); g.Clear(Color.Yellow); // 畫圖片的背景噪音線 for (int i = 0; i < 18; 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(new Pen(Color.FromArgb(random.Next()), 1), x1, y1, x2, y2); } Font font = new System.Drawing.Font('Times New Roman', 15, System.Drawing.FontStyle.Bold); LinearGradientBrush brush = new LinearGradientBrush(new Rectangle(0, 0, image.Width leftspace, image.Height), Color.Black, Color.DarkRed, 1.2f, true); if (_codetype != CodeType.Words) { for (int i = 0; i < checkCode.Length; i ) { g.DrawString(checkCode.Substring(i, 1), font, brush, (2 i * _jianju) leftspace, 1); } } else { g.DrawString(checkCode, font, brush, 2, 2); } // 畫圖片的前景噪音點(diǎn) for (int i = 0; i < 150; i ) { int x = random.Next(image.Width); int y = random.Next(image.Height); image.SetPixel(x, y, Color.FromArgb(random.Next())); } // 畫圖片的波形濾鏡效果 if (_codetype != CodeType.Words) { image = TwistImage(image, true, 3, 1); } // 畫圖片的邊框線 g.DrawRectangle(new Pen(Color.Green), 0, 0, image.Width - 1, image.Height - 1); ms = new System.IO.MemoryStream(); image.Save(ms, System.Drawing.Imaging.ImageFormat.Gif); } finally { g.Dispose(); image.Dispose(); } return ms; } #endregion } }}

說(shuō)明:

getyzm();就是產(chǎn)生及刷新驗(yàn)證碼的方法

用用戶輸入與 ther 對(duì)比來(lái)判斷驗(yàn)證碼是否正確。

效果如下:

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
C#窗體——100以內(nèi)加法做題程序
C#生成中文漢字驗(yàn)證碼源碼
多線程Demo
小玩混合編程--用C 調(diào)用c#寫的webservice
Java多線程
Java基礎(chǔ)-day07-代碼題-自定義數(shù)據(jù)類型&ArrayList集合
更多類似文章 >>
生活服務(wù)
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服