https://www.toutiao.com/article/7262516641500758584/

条形码

ZXing.Net.Bindings.ZKWeb.System.Drawing

https://www.toutiao.com/article/6996640540674523679/

https://www.cnblogs.com/hellocjr/p/16505968.html

using System;
using System.IO;
using System.DrawingCore;
using ZXing.Common;
using ZXing;
using ZXing.QrCode;
using ZXing.ZKWeb;
using System.Net;
using System.Threading;
using System.DrawingCore.Imaging;

```asp
public static class CodeHelper
    {
        /// <summary>
        /// 读取二维码或者条形码(通过http路径)
        /// </summary>
        /// <param name="url">http路径</param>
        /// <returns>returns</returns>
        public static string ReadFromImage(string url)
        {
            var tryCount = 1;
            Console.WriteLine($"正在识别:url={url}");
            while (tryCount <= 3)
            {// 偶尔识别不出时重试
                try
                {
                    if (string.IsNullOrWhiteSpace(url))
                    {
                        return "";
                    }

                    HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
                    request.Method = "GET";
                    using (WebResponse response = request.GetResponse())
                    {
                        using (var stream = response.GetResponseStream())
                        {
                            using (var image = Image.FromStream(stream))
                            {
                                using (Bitmap bmp = Resizer(image, 2000))
                                {// 因有些图片较模糊,故放大比较容易识别。可不放大 Bitmap bmp = new Bitmap(image);

                                    // 该类名称为BarcodeReader,可以读二维码和条形码
                                    var zzb = new ZXing.ZKWeb.BarcodeReader();
                                    zzb.Options = new DecodingOptions
                                    {
                                        CharacterSet = "UTF-8"
                                    };
                                    Result r = zzb.Decode(bmp);
                                    string resultText = null;
                                    if (r != null)
                                    {
                                        resultText = r.Text;
                                    }

                                    if (!string.IsNullOrWhiteSpace(resultText))
                                    {
                                        Console.WriteLine($"识别结果:{resultText}");
                                    }

                                    tryCount = 10;
                                    return resultText;
                                }
                            }
                        }
                    }
                }
                catch (Exception ex)
                {                   
                    Console.WriteLine($"ReadFromImage异常,url={url},异常消息:{ex.Message}\r\n");
                    tryCount++;
                    if (tryCount <= 3)
                    {
                        Console.WriteLine($"0.5秒后将重试");
                        Thread.Sleep(500);
                    }
                }
            }

            return "";
        }

        /// <summary>
        /// 按宽度放大
        /// </summary>
        /// <param name="bmp">bmp</param>
        /// <param name="width">width</param>
        /// <returns>returns</returns>
        private static Bitmap Resizer(this Image bmp, int width)
        {
            if (bmp.Width >= width)
            {
                return new Bitmap(bmp);
            }

            Bitmap ob = new Bitmap(width, bmp.Height * width / bmp.Width);

            using (var g = Graphics.FromImage(ob))
            {
                g.Clear(Color.WhiteSmoke);
                g.DrawImage(bmp, new Rectangle(0, 0, ob.Width, ob.Height), 0, 0, bmp.Width, bmp.Height, GraphicsUnit.Pixel);
            }

            return ob;
        }

        /// <summary>
        /// 读取二维码或者条形码(通过物理路径)
        /// </summary>
        /// <param name="imgFile">物理路径</param>
        /// <returns>returns</returns>
        public static string ReadFromImage2(string imgFile)
        {
            if (string.IsNullOrWhiteSpace(imgFile))
            {
                return "";
            }

            Image img = Image.FromFile(imgFile);
            Bitmap b = new Bitmap(img);

            // 该类名称为BarcodeReader,可以读二维码和条形码
            var zzb = new ZXing.ZKWeb.BarcodeReader();
            zzb.Options = new DecodingOptions
            {
                CharacterSet = "UTF-8"
            };
            Result r = zzb.Decode(b);
            string resultText = null;
            if (r != null)
            {
                resultText = r.Text;
            }

            b.Dispose();
            img.Dispose();

            return resultText;
        }
    }

SixLabors.ImageSharp

https://bbs.csdn.net/topics/618149315

仿EasyCaptcha和SimpleCaptcha,基于.Net Standard 2.0 的图形验证码模块。 v2是指版本号>=2.0.0的版本,<2.0.0则称为v1。v1基于ImageSharp,v2基于SkiaSharp。SkiaSharp性能更好,但发布到linux时需要安装对应NativeAssets(ImageSharp则不需要)。

滑动验证码请移步lazy-slide-captcha。

在线演示
效果展示
CaptchaType 字体 静态图 动图
DEFAULT (0) Actionj

CHINESE (1) kaiti

NUMBER (2) Fresnel

NUMBER_ZH_CN (3) kaiti

NUMBER_ZH_HK (4) kaiti

WORD (5) Epilog

WORD_LOWER (6) Epilog

WORD_UPPER (7) Epilog

WORD_NUMBER_LOWER (8) Epilog

WORD_NUMBER_UPPER (9) Epilog

ARITHMETIC (10) Epilog

ARITHMETIC_ZH (11) kaiti

字体 图片 字体 图片
Actionj

Epilog

Fresnel

Headache

Kaiti

Lexo

Prefix

Progbot

Ransom

Robot

Scandal

安装
• Package Manager

Install-Package Lazy.Captcha.Core
• .NET CLI

dotnet add package Lazy.Captcha.Core
linux环境下运行,请安装
SkiaSharp.NativeAssets.Linux包,更多细节请查看SkiaSharp官方文档。

使用说明

1. 注册服务
// 默认使用内存存储(AddDistributedMemoryCache)
builder.Services.AddCaptcha(builder.Configuration);

// 如果使用redis分布式缓存
//builder.Services.AddStackExchangeRedisCache(options =>
//{
// options.Configuration = builder.Configuration.GetConnectionString("RedisCache");
// options.InstanceName = "captcha:";
//});
2. 配置
appsettings.json (不提供配置时,使用默认配置)
{
"ConnectionStrings": {
// 使用Redis缓存时,需要配置此项
// 使用格式参考 Microsoft.Extensions.Caching.StackExchangeRedis
"RedisCache": "localhost,password=Aa123456."
 },
"CaptchaOptions": {
"CaptchaType": 5, // 验证码类型
"CodeLength": 4, // 验证码长度, 要放在CaptchaType设置后 当类型为算术表达式时,长度代表操作的个数
"ExpirySeconds": 60, // 验证码过期秒数
"IgnoreCase": true, // 比较时是否忽略大小写
"StoreageKeyPrefix": "", // 存储键前缀
"ImageOption": {
"Animation": false, // 是否启用动画
"FontSize": 32, // 字体大小
"Width": 100, // 验证码宽度
"Height": 40, // 验证码高度
"BubbleMinRadius": 5, // 气泡最小半径
"BubbleMaxRadius": 10, // 气泡最大半径
"BubbleCount": 3, // 气泡数量
"BubbleThickness": 1.0, // 气泡边沿厚度
"InterferenceLineCount": 4, // 干扰线数量
"FontFamily": "kaiti", // 包含actionj,epilog,fresnel,headache,lexo,prefix,progbot,ransom,robot,scandal,kaiti
"FrameDelay": 15, // 每帧延迟,Animation=true时有效, 默认30
"BackgroundColor": "#ffff00", // 格式: rgb, rgba, rrggbb, or rrggbbaa format to match web syntax, 默认#fff
"ForegroundColors": "", // 颜色格式同BackgroundColor,多个颜色逗号分割,随机选取。不填,空值,则使用默认颜色集
"Quality": 100, // 图片质量(质量越高图片越大,gif调整无效可能会更大)
"TextBold": false// 粗体,该配置2.0.3新增
 }
 }
}
配置可以通过运行Sample.Winfrom生成或直接下载Release运行。


代码配置
// 全部配置
builder.Services.AddCaptcha(builder.Configuration, option =>
{
 option.CaptchaType = CaptchaType.WORD; // 验证码类型
 option.CodeLength = 6; // 验证码长度, 要放在CaptchaType设置后. 当类型为算术表达式时,长度代表操作的个数
 option.ExpirySeconds = 30; // 验证码过期时间
 option.IgnoreCase = true; // 比较时是否忽略大小写
 option.StoreageKeyPrefix = ""; // 存储键前缀

 option.ImageOption.Animation = true; // 是否启用动画
 option.ImageOption.FrameDelay = 30; // 每帧延迟,Animation=true时有效, 默认30

 option.ImageOption.Width = 150; // 验证码宽度
 option.ImageOption.Height = 50; // 验证码高度
 option.ImageOption.BackgroundColor = SixLabors.ImageSharp.Color.White; // 验证码背景色

 option.ImageOption.BubbleCount = 2; // 气泡数量
 option.ImageOption.BubbleMinRadius = 5; // 气泡最小半径
 option.ImageOption.BubbleMaxRadius = 15; // 气泡最大半径
 option.ImageOption.BubbleThickness = 1; // 气泡边沿厚度

 option.ImageOption.InterferenceLineCount = 2; // 干扰线数量

 option.ImageOption.FontSize = 36; // 字体大小
 option.ImageOption.FontFamily = DefaultFontFamilys.Instance.Actionj; // 字体

/* 
 * 中文使用kaiti,其他字符可根据喜好设置(可能部分转字符会出现绘制不出的情况)。
 * 当验证码类型为“ARITHMETIC”时,不要使用“Ransom”字体。(运算符和等号绘制不出来)
 */

 option.ImageOption.TextBold = true;// 粗体,该配置2.0.3新增
});
3. Controller

[Route("captcha")]
[ApiController]
publicclassCaptchaController : Controller
{
privatereadonly ICaptcha _captcha;

publicCaptchaController(ICaptcha captcha)
 {
 _captcha = captcha;
 }

 [HttpGet]
public IActionResult Captcha(string id)
 {
var info = _captcha.Generate(id);
// 有多处验证码且过期时间不一样,可传第二个参数覆盖默认配置。
//var info = _captcha.Generate(id,120);
var stream = new MemoryStream(info.Bytes);
return File(stream, "image/gif");
 }

/// <summary>
/// 演示时使用HttpGet传参方便,这里仅做返回处理
/// </summary>
 [HttpGet("validate")]
publicboolValidate(string id, string code)
 {
return _captcha.Validate(id, code);
 }

/// <summary>
/// 多次校验(https://gitee.com/pojianbing/lazy-captcha/issues/I4XHGM)
/// 演示时使用HttpGet传参方便,这里仅做返回处理
/// </summary>
 [HttpGet("validate2")]
publicboolValidate2(string id, string code)
 {
return _captcha.Validate(id, code, false);
 }
}

项目地址
项目地址:https://gitee.com/pojianbing/lazy-captcha

文档更新时间: 2024-05-05 19:40   作者:admin