namespace JNPF.Common.Captcha.General; /// /// 常规验证码. /// public interface IGeneralCaptcha { /// /// 创建验证码图片. /// /// 时间戳. /// 宽度. /// 高度. /// 长度. /// Task CreateCaptchaImage(string timestamp, int width, int height, int length = 4); }