您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關LazyCaptcha如何自定義隨機驗證碼和字體,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
LazyCaptcha是仿EasyCaptcha和SimpleCaptcha,基于.Net Standard 2.1的圖形驗證碼模塊。
目前Gitee 52star, 如果對您有幫助,請不吝嗇點顆星????。
這里隨機是指CaptchaType隨機,動靜隨機等等,你可以設置CaptchaOptions任意選項值。每次刷新驗證碼,效果如下:
我也不知道這種需求是否真實存在。
/// <summary> /// 隨機驗證碼 /// </summary> public class RandomCaptcha : DefaultCaptcha { private static readonly Random random = new(); private static readonly CaptchaType[] captchaTypes = Enum.GetValues<CaptchaType>(); public RandomCaptcha(IOptionsSnapshot<CaptchaOptions> options, IStorage storage) : base(options, storage) { } /// <summary> /// 更新選項 /// </summary> /// <param name="options"></param> protected override void ChangeOptions(CaptchaOptions options) // 隨機驗證碼類型 options.CaptchaType = captchaTypes[random.Next(0, captchaTypes.Length)]; // 當是算數運算時,CodeLength是指運算數個數 if (options.CaptchaType.IsArithmetic()) { options.CodeLength = 2; } else options.CodeLength = 4; // 如果包含中文時,使用kaiti字體,否則文字亂碼 if (options.CaptchaType.ContainsChinese()) options.ImageOption.FontFamily = DefaultFontFamilys.Instance.Kaiti; options.ImageOption.FontSize = 24; options.ImageOption.FontFamily = DefaultFontFamilys.Instance.Actionj; // 動靜隨機 options.ImageOption.Animation = random.Next(2) == 0; // 干擾線隨機 options.ImageOption.InterferenceLineCount = random.Next(1, 4); // 氣泡隨機 options.ImageOption.BubbleCount = random.Next(1, 4); // 其他選項... }
// 內存存儲, 基于appsettings.json配置 builder.Services.AddCaptcha(builder.Configuration); // 開啟隨機驗證碼 builder.Services.Add(ServiceDescriptor.Scoped<ICaptcha, RandomCaptcha>());
使用KG HAPPY字體,效果如圖:
你可以通過fontspace找到自己喜愛的字體。
當然也可以不作為嵌入資源,放到特定目錄也是可以的,只要對下邊ResourceFontFamilysFinder稍作修改即可。
public class ResourceFontFamilysFinder { private static Lazy<List<FontFamily>> _fontFamilies = new Lazy<List<FontFamily>>(() => { var fontFamilies = new List<FontFamily>(); var assembly = Assembly.GetExecutingAssembly(); var names = assembly.GetManifestResourceNames(); if (names?.Length > 0 == true) { var fontCollection = new FontCollection(); foreach (var name in names) { if (!name.EndsWith("ttf")) continue; fontFamilies.Add(fontCollection.Add(assembly.GetManifestResourceStream(name))); } } return fontFamilies; }); public static FontFamily Find(string name) return _fontFamilies.Value.First(e => e.Name == name); } }
// 內存存儲, 基于appsettings.json配置 builder.Services.AddCaptcha(builder.Configuration, options => { // 自定義字體 options.ImageOption.FontSize = 28; options.ImageOption.FontFamily = ResourceFontFamilysFinder.Find("KG HAPPY"); // 字體的名字在打開ttf文件時會顯示 });
關于“LazyCaptcha如何自定義隨機驗證碼和字體”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。