C#圖片驗證碼
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;
namespace Portal.Pages.Public
{
public partial class checkcode : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
this.CreateCheckCodeImage(GenerateCheckCode());
}
}
private string GenerateCheckCode()
{
int number;
char code;
string checkCode = String.Empty;
System.Random random = new Random();
for (int i = 0; i < 5; i++)
{
number = random.Next();
if (number % 2 == 0)
code = (char)('0' + (char)(number % 10));
else
code = (char)('A' + (char)(number % 26));
checkCode += code.ToString();
}
Response.Cookies.Add(new HttpCookie("CheckCode", checkCode));
return checkCode;
}
private void CreateCheckCodeImage(string checkCode)
{
if (checkCode == null || checkCode.Trim() == String.Empty)
return;
System.Drawing.Bitmap image = new System.Drawing.Bitmap((int)Math.Ceiling((checkCode.Length * 12.5)), 22);
Graphics g = Graphics.FromImage(image);
try
{
//生成隨機生成器
Random random = new Random();
//清空圖片背景色
g.Clear(Color.White);
//畫圖片的背景噪音線
for (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(new Pen(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 brush = new System.Drawing.Drawing2D.LinearGradientBrush(new Rectangle(0, 0, image.Width, image.Height), Color.Blue, Color.DarkRed, 1.2f, true);
g.DrawString(checkCode, font, brush, 2, 2);
//畫圖片的前景噪音點
for (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);
Response.ClearContent();
Response.ContentType = "image/Gif";
Response.BinaryWrite(ms.ToArray());
}
finally
{
g.Dispose();
image.Dispose();
}
}
}
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22392018/viewspace-663547/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 圖片驗證碼介面
- 圖片驗證碼 CaptchaAPT
- golang 生成圖片驗證碼Golang
- C# 滑動驗證碼|拼圖驗證|SlideCaptchaC#IDEAPT
- 【日常筆記】生成驗證碼圖片筆記
- 圖形驗證碼圖片樣式設定
- node實現登入圖片驗證碼
- 滑塊驗證圖片
- 旋轉圖片驗證
- 點選驗證圖片
- 短視訊商城系統,通過Java實現圖片驗證碼,點選重新整理圖片驗證碼Java
- 5種PHP生成圖片驗證碼例項PHP
- 【例項】使用GD庫生成圖片驗證碼
- Python圖片驗證碼降噪 — 8鄰域降噪Python
- 分享一個圖片驗證碼功能的實現
- 登陸介面模組解析——生成圖片驗證碼
- 利用tesseract解析簡單數字驗證碼圖片
- C#滑動拼圖驗證碼實現筆記C#筆記
- 圖形驗證碼
- 分享一款漂亮的 C# .Net 圖形驗證碼C#
- 校驗碼圖片生成
- TP6實現前後端分離的圖片驗證碼,驗證碼以介面形式返回後端
- SpringBoot + Spring Security 學習筆記(三)實現圖片驗證碼認證Spring Boot筆記
- 一步一步生成滑動驗證碼圖片
- 使用"mews/captcha:~2.0" 驗證碼圖片不顯示問題APT
- [BUG反饋]LINUX下圖示、圖片及驗證碼顯示不正確Linux
- 對極驗geetest滑塊驗證碼圖片還原演算法的研究演算法
- 利用PyTorch訓練模型識別數字+英文圖片驗證碼PyTorch模型
- tensorflow 訓練 think-captcha 圖片驗證碼自動識別APT
- Springboot +redis+⾕歌開源Kaptcha實現圖片驗證碼功能Spring BootRedisAPT
- python+selenium 處理圖片驗證碼,Image 點不出 crop 方法Python
- Django之圖形驗證碼Django
- Flutter 生成圖形驗證碼Flutter
- C# 常用驗證C#
- 用Python製作圖片驗證碼,這三行程式碼完事兒Python行程
- flask專案1實戰:2.2 flask框架下使用圖片驗證碼Flask框架
- 關於IE下驗證碼圖片無法正常顯示問題
- Django登入(含隨機生成圖片驗證碼)註冊例項Django隨機
- 使用 C# 識別英文數字驗證碼C#