如何用java代码生成二维码

 时间:2024-10-26 03:26:55

1、在pom.xml中引入依赖的架包<dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>3.3.0</version> </dependency> <dependency> <groupId>com.google.zxing</groupId> <artifactId>javase</artifactId> <version>3.0.0</version> </dependency>

如何用java代码生成二维码

2、<dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version></dependency><dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version></dependency><dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.4</version></dependency>

3、public class QRCodeUtil { private static final String CHARSET = "UTF-8"; private static final String FORMAT_NAME = "JPG"; // 二维码尺寸 private static final int QRCODE_SIZE = 200; // LOGO宽度 private static final int WIDTH = 60; // LOGO高度 private static final int HEIGHT = 60; /** * TODO 创建二维码图片 */ private static BufferedImage createImage(String content, String logoImgPath, boolean needCompress) throws WriterException, IOException { Hashtable<EncodeHintType, Object> hints = new Hashtable<EncodeHintType, Object>(); hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H); hints.put(EncodeHintType.CHARACTER_SET, CHARSET); hints.put(EncodeHintType.MARGIN, 1); BitMatrix bitMatrix = new MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE, QRCODE_SIZE, QRCODE_SIZE, hints); int width = bitMatrix.getWidth(); int height = bitMatrix.getHeight(); BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); for (int x = 0; x < width; x++) { for (int y = 0; y < height; y++) { image.setRGB(x, y, bitMatrix.get(x, y) ? 0xFF000000 : 0xFFFFFFFF); } } if (logoImgPath == null || "".equals(logoImgPath)) { return image; } // 插入图片 QRCodeUtil.insertImage(image, logoImgPath, needCompress); return image; }

如何用java代码生成二维码
  • 元气骑士wifi增幅器怎么得
  • 火影忍者小队突袭怎么玩攻略
  • 元气骑士新增的道士第三技能怎么样呢?
  • 火影忍者手游忍具怎么获得
  • 如何设置洋葱学园收货地址
  • 热门搜索
    一二年级消防手抄报 抗美援朝手抄报 手抄报模版 童话手抄报 关于诗歌的手抄报 科技手抄报图片大全 清明节的手抄报图片 植树节手抄报简单 妇女节手抄报 物理手抄报