|
@@ -1,18 +1,14 @@
|
|
package cn.keking.utils;
|
|
package cn.keking.utils;
|
|
|
|
|
|
-import com.aspose.cad.Tuple;
|
|
|
|
-import org.springframework.util.ObjectUtils;
|
|
|
|
|
|
+import org.springframework.util.Assert;
|
|
|
|
|
|
import java.awt.*;
|
|
import java.awt.*;
|
|
import java.awt.image.BufferedImage;
|
|
import java.awt.image.BufferedImage;
|
|
-import java.util.HashMap;
|
|
|
|
-import java.util.Map;
|
|
|
|
import java.util.Random;
|
|
import java.util.Random;
|
|
|
|
|
|
public class CaptchaUtil {
|
|
public class CaptchaUtil {
|
|
|
|
|
|
public static final String captcha_code = "captchaCode";
|
|
public static final String captcha_code = "captchaCode";
|
|
- public static final String captcha_code_pic = "captchaCodePic";
|
|
|
|
public static final String captcha_generate_time = "captchaTime";
|
|
public static final String captcha_generate_time = "captchaTime";
|
|
|
|
|
|
private static final int width = 100;// 定义图片的width
|
|
private static final int width = 100;// 定义图片的width
|
|
@@ -25,11 +21,12 @@ public class CaptchaUtil {
|
|
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm', 'n', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', '2', '3', '4', '5', '6', '7', '8', '9'};
|
|
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm', 'n', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', '2', '3', '4', '5', '6', '7', '8', '9'};
|
|
|
|
|
|
/**
|
|
/**
|
|
- * 指定验证码、或生成验证码。
|
|
|
|
- * @param captchaCode 指定验证码, 如果为 null,则生成验证码。否则,使用指定的验证码。
|
|
|
|
- * @return 验证码和验证码图片
|
|
|
|
|
|
+ * 指定验证码、生成验证码图片。
|
|
|
|
+ * @param captchaCode 验证码
|
|
|
|
+ * @return 验证码图片
|
|
*/
|
|
*/
|
|
- public static Map<String, Object> generateCaptcha(String captchaCode) {
|
|
|
|
|
|
+ public static BufferedImage generateCaptchaPic(final String captchaCode) {
|
|
|
|
+ Assert.notNull(captchaCode, "captchaCode must not be null");
|
|
// 定义图像buffer
|
|
// 定义图像buffer
|
|
BufferedImage buffImg = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
|
|
BufferedImage buffImg = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
|
|
Graphics gd = buffImg.getGraphics();
|
|
Graphics gd = buffImg.getGraphics();
|
|
@@ -54,11 +51,6 @@ public class CaptchaUtil {
|
|
}
|
|
}
|
|
// randomCode用于保存随机产生的验证码,以便用户登录后进行验证。
|
|
// randomCode用于保存随机产生的验证码,以便用户登录后进行验证。
|
|
int red, green, blue;
|
|
int red, green, blue;
|
|
-
|
|
|
|
- if (ObjectUtils.isEmpty(captchaCode)) {
|
|
|
|
- captchaCode = generateCaptchaCode();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
// 产生随机的颜色分量来构造颜色值,这样输出的每位数字的颜色值都将不同。
|
|
// 产生随机的颜色分量来构造颜色值,这样输出的每位数字的颜色值都将不同。
|
|
red = random.nextInt(255);
|
|
red = random.nextInt(255);
|
|
green = random.nextInt(255);
|
|
green = random.nextInt(255);
|
|
@@ -66,19 +58,14 @@ public class CaptchaUtil {
|
|
// 用随机产生的颜色将验证码绘制到图像中。
|
|
// 用随机产生的颜色将验证码绘制到图像中。
|
|
gd.setColor(new Color(red, green, blue));
|
|
gd.setColor(new Color(red, green, blue));
|
|
gd.drawString(captchaCode, 18, codeY);
|
|
gd.drawString(captchaCode, 18, codeY);
|
|
-
|
|
|
|
- Map<String, Object> map = new HashMap<>();
|
|
|
|
- map.put(captcha_code, captchaCode);
|
|
|
|
- //存放生成的验证码BufferedImage对象
|
|
|
|
- map.put(captcha_code_pic, buffImg);
|
|
|
|
- return map;
|
|
|
|
|
|
+ return buffImg;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
* 生成随机字符串。
|
|
* 生成随机字符串。
|
|
* @return 字符串
|
|
* @return 字符串
|
|
*/
|
|
*/
|
|
- private static String generateCaptchaCode() {
|
|
|
|
|
|
+ public static String generateCaptchaCode() {
|
|
Random random = new Random();
|
|
Random random = new Random();
|
|
StringBuilder randomCode = new StringBuilder();
|
|
StringBuilder randomCode = new StringBuilder();
|
|
for (int i = 0; i < codeLength; i++) {
|
|
for (int i = 0; i < codeLength; i++) {
|