生成二维码接口,前端调用接口将二维码显示在页面上

主要是生成数字和字母4位的二维码

我们会把生成的二维码放入到缓存中,有过期时间。当用二维码进行验证时需要根据key值拿到二维码的值,如果页面传过来的验证码和缓存中的一样,则说明验证码输入正确。

@RequestMapping(value = "/getImgCode")
public void getImgCode(HttpServletRequest request, HttpServletResponse response, @RequestParam(defaultValue = "") String telephone) throws Exception {

// 设置响应的类型格式为图片格式
response.setContentType("image/jpeg");
//禁止图像缓存。
response.setHeader("Pragma", "no-cache");
response.setHeader("Cache-Control", "no-cache");
response.setDateHeader("Expires", 0);
HttpSession session = request.getSession();

ValidateCode vCode = new ValidateCode(140, 50, 4, 0);
String key = String.format(KConstants.Key.IMGCODE, telephone.trim());
SKBeanUtils.getRedisCRUD().set(key, vCode.getCode());
SKBeanUtils.getRedisCRUD().expire(key, 300);

session.setAttribute("code", vCode.getCode());
// session.setMaxInactiveInterval(10*60);
System.out.println("getImgCode telephone ===>" + telephone + " code " + vCode.getCode());
vCode.write(response.getOutputStream());
}

/** 
*
* @param width 图片宽
* @param height 图片高
* @param codeCount 字符个数
* @param lineCount 干扰线条数
*/
public ValidateCode(int width,int height,int codeCount,int lineCount) {
this.width=width;
this.height=height;
this.codeCount=codeCount;
this.lineCount=lineCount;
this.createCode();
}

public void createCode() {
int x = 0,fontHeight=0,codeY=0;
int red = 0, green = 0, blue = 0;

x = width / (codeCount);//每个字符的宽度
fontHeight = height -4;//字体的高度
codeY = height - 8;

// 图像buffer
buffImg = new BufferedImage(width, height,BufferedImage.TYPE_INT_RGB);
Graphics2D g = buffImg.createGraphics();
// 生成随机数
Random random = new Random();
// 将图像填充为白色
g.setColor(Color.WHITE);
g.fillRect(0, 0, width, height);
// 创建字体
ImgFontByte imgFont = new ImgFontByte();
Font font =imgFont.getFont(fontHeight);
g.setFont(font);

for (int i = 0; i < lineCount; i++) {
int xs = random.nextInt(width);
int ys = random.nextInt(height);
int xe = xs+random.nextInt(width/8);
int ye = ys+random.nextInt(height/8);
red = random.nextInt(255);
green = random.nextInt(255);
blue = random.nextInt(255);
g.setColor(new Color(red, green, blue));
g.drawLine(xs, ys, xe, ye);
}

// randomCode记录随机产生的验证码
StringBuffer randomCode = new StringBuffer();
// 随机产生codeCount个字符的验证码。
for (int i = 0; i < codeCount; i++) {
String strRand = String.valueOf(codeSequence[random.nextInt(codeSequence.length)]);
// 产生随机的颜色值,让输出的每个字符的颜色值都将不同。
red =0;
green = 0;
blue =0;
g.setColor(new Color(red, green, blue));
g.drawString(strRand, (i) * x, codeY);
// 将产生的四个随机数组合在一起。
randomCode.append(strRand);
}
// 将四位数字的验证码保存到Session中。
code=randomCode.toString();
}

页面:这样的话就得到生成的二维码。
var url = "/getImgCode?telephone=" + account+"&timestamp=" + new Date().getTime();

$("#getImgCode").show();
$("#getImgCode").attr("src", url);

猜你喜欢

转载自www.cnblogs.com/echo777/p/11549382.html