using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.IO;
using System.Security.Cryptography;
using System.Text;
using System.Web;
using Masuit.Tools.Systems;
namespace Masuit.Tools.Strings
{
///
/// 画验证码
///
public static class ValidateCode
{
///
/// 生成验证码
///
/// 指定验证码的长度
/// 验证码字符串
public static string CreateValidateCode(int length)
{
string ch = "abcdefghjkmnpqrstuvwxyzABCDEFGHJKMNPQRSTUVWXYZ1234567890@#$%&?";
byte[] b = new byte[4];
using var cpt = new RNGCryptoServiceProvider();
cpt.GetBytes(b);
var r = new Random(BitConverter.ToInt32(b, 0));
var sb = new StringBuilder();
for (int i = 0; i < length; i++)
{
sb.Append(ch[r.Next(ch.Length)]);
}
return sb.ToString();
}
///
/// 创建验证码的图片
///
/// 验证码序列
/// 当前的HttpContext上下文对象
/// 字体大小,默认值22px
/// 行高,默认36px
/// The operation failed.
public static byte[] CreateValidateGraphic(this HttpContext context, string validateCode, int fontSize = 22, int lineHeight = 36)
{
using Bitmap image = new Bitmap((int)Math.Ceiling(validateCode.Length * (fontSize + 2.0)), lineHeight);
using Graphics g = Graphics.FromImage(image);
//生成随机生成器
Random random = new Random();
//清空图片背景色
g.Clear(Color.White);
//画图片的干扰线
for (int i = 0; i < 75; 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[] fonts =
{
new Font("Arial", fontSize, FontStyle.Bold | FontStyle.Italic),
new Font("微软雅黑", fontSize, FontStyle.Bold | FontStyle.Italic),
new Font("黑体", fontSize, FontStyle.Bold | FontStyle.Italic),
new Font("宋体", fontSize, FontStyle.Bold | FontStyle.Italic),
new Font("楷体", fontSize, FontStyle.Bold | FontStyle.Italic)
};
//渐变.
using var brush = new LinearGradientBrush(new Rectangle(0, 0, image.Width, image.Height), Color.Blue, Color.DarkRed, 1.2f, true);
g.DrawString(validateCode, fonts[new Random().Next(fonts.Length)], brush, 3, 2);
//画图片的前景干扰点
for (int i = 0; i < 300; 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);
//保存图片数据
using var stream = new PooledMemoryStream();
image.Save(stream, System.Drawing.Imaging.ImageFormat.Jpeg);
//输出图片流
context.Response.Clear();
context.Response.ContentType = "image/jpeg";
return stream.ToArray();
}
}
}