1. 编写工具类
package com.cn.beauty.util;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.imageio.ImageIO;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.util.ArrayList;
import java.util.Random;
public class RandomValidateCodeUtil {
public static final String RANDOMCODEKEY = "MEISHANG-LOGIN-RANDOMVALIDATECODEKEY";
private String randString = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
private int width = 95;
private int height = 40;
private int stringNum = 4;
private static final Logger logger = LoggerFactory.getLogger(RandomValidateCodeUtil.class);
private Random random = new Random();
private Font getFont() {
return new Font("Wide Latin", Font.PLAIN, 18);
}
private Color getRandColor() {
ArrayList<Color> colors = new ArrayList<Color>();
colors.add(new Color(241, 158, 194));
colors.add(new Color(255, 94, 226));
colors.add(new Color(255, 156, 177));
colors.add(new Color(245, 152, 217));
colors.add(new Color(255, 85, 81));
colors.add(new Color(245, 251));
int num = random.nextInt(6);
return colors.get(num);
}
public void getRandcode(HttpServletRequest request, HttpServletResponse response) {
HttpSession session = request.getSession();
BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_BGR);
Graphics g = image.getGraphics();
g.fillRect(0, 0, width, height);
g.setFont(new Font("Wide Latin", 18));
g.setColor(getRandColor());
float yawpRate = 0.01f;
int area = (int) (yawpRate * width * height);
for (int i = 0; i < area; i++) {
int x = random.nextInt(width);
int y = random.nextInt(height);
image.setRGB(x, y, random.nextInt(255));
}
String randomString = "";
for (int i = 1; i <= stringNum; i++) {
randomString = drowString(g, randomString, i);
}
logger.info(randomString);
session.removeAttribute(RANDOMCODEKEY);
session.setAttribute(RANDOMCODEKEY, randomString);
g.dispose();
try {
ImageIO.write(image, "JPEG", response.getOutputStream());
} catch (Exception e) {
logger.error("将内存中的图片通过流动形式输出到客户端失败>>>> ", e);
}
}
private String drowString(Graphics g, String randomString, int i) {
g.setFont(getFont());
g.setColor(getRandColor());
String rand = String.valueOf(getRandomString(random.nextInt(randString
.length())));
randomString += rand;
g.translate(random.nextInt(3), random.nextInt(3));
g.drawString(rand, 20 * (i - 1) + 3, 25);
return randomString;
}
public String getRandomString(int num) {
return String.valueOf(randString.charAt(num));
}
}
2. 编写 Controller 中的接口
@RequestMapping(value = "/user/getVerify")
public void getVerify(HttpServletRequest request, HttpServletResponse response) {
try {
response.setContentType("image/jpeg");
response.setHeader("Pragma", "No-cache");
response.setHeader("Cache-Control", "no-cache");
response.setDateHeader("Expire", 0);
RandomValidateCodeUtil randomValidateCode = new RandomValidateCodeUtil();
randomValidateCode.getRandcode(request, response);
} catch (Exception e) {
log.error("获取验证码失败>>>>", e);
}
}
@PostMapping("/user/checkVerify")
public boolean checkVerify(@RequestParam String verifyInput, HttpSession session) {
try {
String inputStr = verifyInput;
String random = (String) session.getAttribute("MEISHANG-LOGIN-RANDOMVALIDATECODEKEY");
if (random == null) {
return false;
}
if (random.equalsIgnoreCase(inputStr)) {
return true;
} else {
return false;
}
} catch (Exception e) {
log.error("验证码校验失败", e);
return false;
}
}
3. 获取验证码图片
访问获取验证码接口
http://127.0.0.1:8605/user/getVerify
效果如下 @H_502_1385@ (编辑:北几岛)
【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!
|