当前位置:   article > 正文

ASP.NET 6 集成 LazyCaptcha v2 图形验证码_.net6 跨平台验证码

.net6 跨平台验证码

1、描述:

仿EasyCaptcha和SimpleCaptcha,基于.Net Standard 2.0 的图形验证码模块,LazyCaptcha v2(基于SkiaSharp),本文采用的是在.NET 6下进行Demo演示,目前演示的是项目中常用的做法。

具体开源与扩展访问:LazyCaptcha: 仿EasyCaptcha的.net core 下的图形验证码

2、效果:

3、安装依赖

Install-Package Lazy.Captcha.Core

PS:Linux环境下运行,请安装SkiaSharp.NativeAssets.Linux包,更多细节请查看SkiaSharp官方文档。

4、注册服务

  1. // Add services to the container.
  2. // 默认使用内存存储(AddDistributedMemoryCache)
  3. builder.Services.AddCaptcha(builder.Configuration);
  4. // 如果使用redis分布式缓存
  5. //builder.Services.AddStackExchangeRedisCache(options =>
  6. //{
  7. // options.Configuration = builder.Configuration.GetConnectionString("RedisCache");
  8. // options.InstanceName = "captcha:";
  9. //});

5、配置参数

修改appsettings.json

  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft.AspNetCore": "Warning"
  6. }
  7. },
  8. "AllowedHosts": "*",
  9. "ConnectionStrings": {
  10. // 使用Redis缓存时,需要配置此项
  11. // 使用格式参考 Microsoft.Extensions.Caching.StackExchangeRedis
  12. "RedisCache": "localhost,password=Aa123456."
  13. },
  14. "CaptchaOptions": {
  15. "CaptchaType": 5, // 验证码类型
  16. "CodeLength": 4, // 验证码长度, 要放在CaptchaType设置后 当类型为算术表达式时,长度代表操作的个数
  17. "ExpirySeconds": 60, // 验证码过期秒数
  18. "IgnoreCase": true, // 比较时是否忽略大小写
  19. "StoreageKeyPrefix": "", // 存储键前缀
  20. "ImageOption": {
  21. "Animation": false, // 是否启用动画
  22. "FontSize": 32, // 字体大小
  23. "Width": 100, // 验证码宽度
  24. "Height": 40, // 验证码高度
  25. "BubbleMinRadius": 5, // 气泡最小半径
  26. "BubbleMaxRadius": 10, // 气泡最大半径
  27. "BubbleCount": 3, // 气泡数量
  28. "BubbleThickness": 1.0, // 气泡边沿厚度
  29. "InterferenceLineCount": 4, // 干扰线数量
  30. "FontFamily": "epilog", // 包含actionj,epilog,fresnel,headache,lexo,prefix,progbot,ransom,robot,scandal,kaiti
  31. "FrameDelay": 15, // 每帧延迟,Animation=true时有效, 默认30
  32. "BackgroundColor": "#fff", // 格式: rgb, rgba, rrggbb, or rrggbbaa format to match web syntax, 默认#fff
  33. "ForegroundColors": "", // 颜色格式同BackgroundColor,多个颜色逗号分割,随机选取。不填,空值,则使用默认颜色集
  34. "Quality": 100, // 图片质量(质量越高图片越大,gif调整无效可能会更大)
  35. "TextBold": false // 粗体,该配置2.0.3新增
  36. }
  37. }
  38. }

6、创建控制器

  1. using Lazy.Captcha.Core;
  2. using Microsoft.AspNetCore.Mvc;
  3. namespace WebAPI.LazyCaptcha.Controllers
  4. {
  5. [Route("api/[controller]/[action]")]
  6. [ApiController]
  7. public class CaptchaController : ControllerBase
  8. {
  9. private readonly ICaptcha _captcha;
  10. public CaptchaController(ICaptcha captcha)
  11. {
  12. _captcha = captcha;
  13. }
  14. [HttpGet]
  15. public IActionResult Captcha(string id)
  16. {
  17. var info = _captcha.Generate(id);
  18. // 有多处验证码且过期时间不一样,可传第二个参数覆盖默认配置。
  19. // var info = _captcha.Generate(id, 120);
  20. using var stream = new MemoryStream(info.Bytes);
  21. return new FileContentResult(stream.ToArray(), "image/gif");
  22. }
  23. /// <summary>
  24. /// 校验验证码是否有效
  25. /// </summary>
  26. [HttpGet("validate")]
  27. public bool Validate(string id, string code)
  28. {
  29. return _captcha.Validate(id, code);
  30. }
  31. /// <summary>
  32. /// 多次校验(https://gitee.com/pojianbing/lazy-captcha/issues/I4XHGM)
  33. /// </summary>
  34. [HttpGet("validate2")]
  35. public bool Validate2(string id, string code)
  36. {
  37. return _captcha.Validate(id, code, false);
  38. }
  39. }
  40. }

7、生成验证码

8、效验验证码

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/125179
推荐阅读
相关标签
  

闽ICP备14008679号