ZXing 初步使用

@(JAVA开发)

Zxing 学习和使用

初步了解zxing

二维码现在已经非常普及,无论是网站还是移动端,都离不开二维码。所以掌握一两种二维码运用还是必要的。

代码段

/**
 * 展示生成二维码
 *
 * @param response
 *
 * @param code
 *            二维码内容
 * @param width
 *            生成的图片宽度
 * @param height
 *            生成的图片高度
 */
@RequestMapping( "/showQRCode")
public void showQRCode(HttpServletResponse response, QRCodeVo code) {

    logger.info("-----Controller:showQRCode start ----" );
    // 通过response返回给客户端
    response.setHeader( "Pragma", "No-cache" );
    response.setHeader( "Cache-Control", "no-cache" );
    response.setDateHeader( "Expires", 0);
    response.setContentType( "image/png"); //设置返回的是图片格式

    int size = 250;
    String fileType = "png";

    OutputStream ops = null;
    String content = code.createQRCodeContent();//实体类 规范输出的数据 这个可以不定义 ,但建议定义好
     // ZXing采用Hashtable方式来保存设置参数,在这程瑞设置的是map 也可以
    Map<EncodeHintType, Object> hintMap = new EnumMap<EncodeHintType, Object>(EncodeHintType.class);
           //设置编码
    hintMap.put(EncodeHintType. CHARACTER_SET, "UTF-8" );

    // Now with zxing version 3.2.1 you could change border size (white
    // border size to just 1)
        //设置间距
    hintMap.put(EncodeHintType. MARGIN, 1);
            //设置纠错级别
    hintMap.put(EncodeHintType. ERROR_CORRECTION, ErrorCorrectionLevel.L );

    try {
      //qr 对象 呈现二维码
        QRCodeWriter qrCodeWriter = new QRCodeWriter();
      //BitMatrix 根据其需要输出的参数,和设置条件等新建BitMatrix对象
        BitMatrix byteMatrix = qrCodeWriter.encode(content, BarcodeFormat.QR_CODE , size, size, hintMap);
        int CrunchifyWidth = byteMatrix.getWidth();
      //BufferedImage的主要作用就是将一副图片加载到内存中
        BufferedImage image = new BufferedImage(CrunchifyWidth, CrunchifyWidth, BufferedImage.TYPE_INT_RGB );
        image.createGraphics();

        Graphics2D graphics = (Graphics2D) image.getGraphics();
        graphics.setColor(Color. WHITE);
        graphics.fillRect(0, 0, CrunchifyWidth, CrunchifyWidth);
        graphics.setColor(Color. BLACK);

        for (int i = 0; i < CrunchifyWidth; i++) {
            for (int j = 0; j < CrunchifyWidth; j++) {
                if (byteMatrix.get(i, j)) {
                    graphics.fillRect(i, j, 1, 1);
                }
            }
        }
        ops = response.getOutputStream();
                     //将一个图像写入输出流
        ImageIO. write(image, fileType, ops);
        logger.info("-----Controller:showQRCode end ----" );
    } catch (IOException e) {
        logger.debug("----- showQRCode failure-----" , e);
    } catch (WriterException e) {
        logger.debug("----- showQRCode failure-----" , e);
    }
}

设置页面请求地址的链接为图片,这样当后台的图片流返回的时候就会在前台展现为一张二维码了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值