Springboot生成二维码

        随着科技的发展,二维码也紧跟发展,平常使用二维码测试时一般都会使用草料二维码生成,但当需要自己生成二维码给别人扫时,问题就出现了,二维码生成的底层到底是什么,不禁开始陷入思考。

       这里我给大家唠唠用zxing做的二维码生成

      首先贴一张二维码生成后的图

      第一步ONE,先导包

用maven工程的将以下代码放到maven中生成maven依赖包,我的依赖都是从maven线上仓库找来的,直接引到pom中下载即可

<!-- https://mvnrepository.com/artifact/com.google.zxing/core -->
    <dependency>
      <groupId>com.google.zxing</groupId>
      <artifactId>core</artifactId>
      <version>3.3.0</version>
    </dependency>
<!-- https://mvnrepository.com/artifact/com.google.zxing/javase -->
    <dependency>
      <groupId>com.google.zxing</groupId>
      <artifactId>javase</artifactId>
      <version>3.3.0</version>
    </dependency>

第二步TWO,不知道大家的习惯是从web层开始写还是从service层开始写,我习惯从web层开始写,不过 。。这都没关系啦

我先上web层代码

 @RequestMapping(value = "createQrCode")
  public String createQrCode(){
    String qrUrl = "https://mp.csdn.net/postedit/86678133";//扫描二维码跳转的链接
    String note = "我的二维码";//二维码下方展示的字
    File logoFile = new File("图片中的logo路径");//logo图片路径
    File codeFile = new File("生成后的图片存放地址");//生成后图片的输出地址
    return qrCodeService.drawLogoQRCode(logoFile, codeFile, qrUrl, note);
  }

这里来写service逻辑层

 public String drawLogoQRCode(File logoFile, File codeFile, String qrUrl, String note) {//图片文件   二维码储存地址  网页路径     二维码说明
    try {
     MultiFormatWriter multiFormatWriter = new MultiFormatWriter();
     // 参数顺序分别为:编码内容,编码类型,生成图片宽度,生成图片高度,设置参数
     BitMatrix bm = multiFormatWriter.encode(qrUrl, BarcodeFormat.QR_CODE, WIDTH, HEIGHT, hints);
     BufferedImage image = new BufferedImage(WIDTH, HEIGHT, BufferedImage.TYPE_INT_RGB);

     // 开始利用二维码数据创建Bitmap图片,分别设为黑(0xFFFFFFFF)白(0xFF000000)两色
     for (int x = 0; x < WIDTH; x++) {
      for (int y = 0; y < HEIGHT; y++) {
       image.setRGB(x, y, bm.get(x, y) ? QRCOLOR : BGWHITE);
      }
     }
     int width = image.getWidth();
     int height = image.getHeight();
     if (Objects.nonNull(logoFile) && logoFile.exists()) {
      // 构建绘图对象
      Graphics2D g = image.createGraphics();
      // 读取Logo图片
      BufferedImage logo = ImageIO.read(logoFile);
      // 开始绘制logo图片
      g.drawImage(logo, width * 2 / 5, height * 2 / 5, width * 2 / 10, height * 2 / 10, null);
      g.dispose();
      logo.flush();
     }
     // 自定义文本描述
     if (!note.isEmpty()) {
      // 新的图片,把带logo的二维码下面加上文字
      BufferedImage outImage = new BufferedImage(400, 445, BufferedImage.TYPE_4BYTE_ABGR);
      Graphics2D outg = outImage.createGraphics();
      // 画二维码到新的面板
      outg.drawImage(image, 0, 0, image.getWidth(), image.getHeight(), null);
      // 画文字到新的面板
      outg.setColor(Color.BLACK);
      outg.setFont(new Font("楷体", Font.BOLD, 30)); // 字体、字型、字号
      int strWidth = outg.getFontMetrics().stringWidth(note);
      if (strWidth > 399) {
       // //长度过长就截取前面部分
       // 长度过长就换行
        String note1 = note.substring(0, note.length() / 2);
        String note2 = note.substring(note.length() / 2, note.length());
        int strWidth1 = outg.getFontMetrics().stringWidth(note1);
        int strWidth2 = outg.getFontMetrics().stringWidth(note2);
        outg.drawString(note1, 200 - strWidth1 / 2, height + (outImage.getHeight() - height) / 2 + 12);
        BufferedImage outImage2 = new BufferedImage(400, 485, BufferedImage.TYPE_4BYTE_ABGR);
        Graphics2D outg2 = outImage2.createGraphics();
        outg2.drawImage(outImage, 0, 0, outImage.getWidth(), outImage.getHeight(), null);
        outg2.setColor(Color.BLACK);
        outg2.setFont(new Font("宋体", Font.BOLD, 30)); // 字体、字型、字号
        outg2.drawString(note2, 200 - strWidth2 / 2,outImage.getHeight() + (outImage2.getHeight() - outImage.getHeight()) / 2 + 5);
        outg2.dispose();
        outImage2.flush();
        outImage = outImage2;
      } else {
       outg.drawString(note, 200 - strWidth / 2, height + (outImage.getHeight() - height) / 2 + 12); // 画文字
      }
      outg.dispose();
      outImage.flush();
      image = outImage;
     }
        image.flush();
        ImageIO.write(image, "png", codeFile); // TODO
        return "成功";
      } catch (Exception e) {
       e.printStackTrace();
       return "失败";
      }
   }

最后运行,生成的二维码就在你上面配的 File codeFile = new File("生成后的图片存放地址");中填写的路径中找。。。

  • 0
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值