生成二维码

 
//生成二维码
private void generatorQrImage(int type, String templateUrl, String merchantName, int merchantId, HttpServletResponse response) throws Exception {

    BufferedImage bi = ImageIO.read(new FileInputStream(templateUrl));

    int width = bi.getWidth(null);

    Graphics2D g = (Graphics2D) bi.getGraphics();
    Font font = new Font("微软雅黑", Font.PLAIN, 80);

    g.setFont(font);
    // 抗锯齿
    g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
    // 计算文字长度,计算居中的x点坐标
    FontMetrics fm = g.getFontMetrics(font);
    int textWidth = fm.stringWidth(merchantName);
    int widthX = (width - textWidth) / 2;
    g.setBackground(Color.WHITE);
    g.setColor(Color.BLACK);
    g.drawString(merchantName, widthX, 1560);

    // 生成二维码
    String qrContent = "http://ttgo.net.cn/quickLogin?businessId=" + merchantId + "&type=" + type;
    MultiFormatWriter multiFormatWriter = new MultiFormatWriter();

    Map<EncodeHintType, Object> hints = new HashMap<>();
    hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");
    hints.put(EncodeHintType.MARGIN, 0);

    BitMatrix bitMatrix;

    bitMatrix = multiFormatWriter.encode(qrContent, BarcodeFormat.QR_CODE, 300, 300, hints);

    ByteArrayOutputStream baos = new ByteArrayOutputStream();

    MatrixToImageWriter.writeToStream(bitMatrix, "png", baos);
    byte[] data = baos.toByteArray();

    ByteArrayInputStream bais = new ByteArrayInputStream(data);

    BufferedImage qrCode = ImageIO.read(bais);

    // 将生成的二维码渲染到模板中

    g.drawImage(qrCode, 910, 1630, 550, 550, null);
    g.dispose();
    bais.close();
    baos.close();

    ImageIO.write(bi, "png", response.getOutputStream());
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值