概述
@RequestMapping(“/makeQrCode”)
public void madeQrCode(HttpServletResponse res,String content,Integer width,Integer height) throws IOException{
String format = "png";
content = (content == null || "".equals(content) ? "http://www.manjiwang.com" : content);
width = (width == null ? 300 : width);
height = (height == null ? 300 : height);
System.out.println(content);
System.out.println(width);
System.out.println(height);
if(content != null && !"".equals(content)){
ServletOutputStream stream = null;
try {
//定义二维码的参数
HashMap hints = new HashMap();
hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);
hints.put(EncodeHintType.MARGIN, 2);
//生成二维码
stream = res.getOutputStream();
BitMatrix bitMatrix = new QRCodeWriter().encode(content, BarcodeFormat.QR_CODE, width, height , hints);
MatrixToImageWriter.writeToStream(bitMatrix, format, stream);
} catch (WriterException e) {
e.printStackTrace();
}finally{
if(stream != null){
stream.flush();
stream.close();
}
}
}
}
前端页面接收
$(“#image”).attr(“src”,”/backstage/makeQrCode?content=”+content+”&width=”+width+”&height=”+height);
最后
以上就是发嗲香菇为你收集整理的zxing生成二维码以流式传到页面的全部内容,希望文章能够帮你解决zxing生成二维码以流式传到页面所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复