mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
验证码生成器增加构造方法,可自定义随机数字符集
This commit is contained in:
parent
7d8c458d4d
commit
17d773181e
@ -2,11 +2,12 @@
|
||||
# 🚀Changelog
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
# 5.8.25(2024-01-02)
|
||||
# 5.8.25(2024-01-05)
|
||||
|
||||
### 🐣新特性
|
||||
* 【core 】 WatchServer新增通过Path获取WatchKey方法(pr#1145@Gitee)
|
||||
* 【core 】 CopyOptions中增加setAutoTransCamelCase方法(issue#3452@Github)
|
||||
* 【captcha】 验证码生成器增加构造方法,可自定义随机数字符集(pr#1147@Gitee)
|
||||
|
||||
### 🐞Bug修复
|
||||
* 【core 】 修复StrJoin当append内容后调用length()会出现空指针问题(issue#3444@Github)
|
||||
|
@ -154,6 +154,7 @@ public class CaptchaUtil {
|
||||
* @param width 宽
|
||||
* @param height 高
|
||||
* @param generator 验证码生成器
|
||||
* @param thickness 验证码干扰元素个数
|
||||
* @return {@link GifCaptcha}
|
||||
*/
|
||||
public static GifCaptcha createGifCaptcha(int width, int height, CodeGenerator generator, int thickness) {
|
||||
|
@ -56,6 +56,7 @@ public class GifCaptcha extends AbstractCaptcha {
|
||||
* @param width 验证码宽度
|
||||
* @param height 验证码高度
|
||||
* @param codeCount 验证码个数
|
||||
* @param interfereCount 验证码干扰元素个数
|
||||
*/
|
||||
public GifCaptcha(int width, int height, int codeCount, int interfereCount) {
|
||||
this(width, height, new RandomGenerator(codeCount), interfereCount);
|
||||
|
Loading…
Reference in New Issue
Block a user