<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
<!--引入生成二維條碼的依賴--> <!-- 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>
import com.google.zxing.*; import com.google.zxing.client.j2se.BufferedImageLuminanceSource; import com.google.zxing.common.BitMatrix; import com.google.zxing.common.HybridBinarizer; import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel; import javax.imageio.ImageIO; import java.awt.*; import java.awt.geom.RoundRectangle2D; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.Hashtable; /** * 二維條碼生成工具類 */ public class QrCodeUtils { private static final String CHARSET = "utf-8"; public static final String FORMAT = "JPG"; // 二維條碼尺寸 private static final int QRCODE_SIZE = 300; // LOGO寬度 private static final int LOGO_WIDTH = 60; // LOGO高度 private static final int LOGO_HEIGHT = 60; /** * 生成二維條碼 * * @param content 二維條碼內容 * @param logoPath logo地址 * @param needCompress 是否壓縮logo * @return 圖片 * @throws Exception */ public static BufferedImage createImage(String content, String logoPath, boolean needCompress) throws Exception { 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 (logoPath == null || "".equals(logoPath)) { return image; } // 插入圖片 QrCodeUtils.insertImage(image, logoPath, needCompress); return image; } /** * 插入LOGO * * @param source 二維條碼圖片 * @param logoPath LOGO圖片地址 * @param needCompress 是否壓縮 * @throws IOException */ private static void insertImage(BufferedImage source, String logoPath, boolean needCompress) throws Exception { File file = new File(logoPath); if (!file.exists()) { System.err.println(""+logoPath+" 該檔案不存在!"); return; } Image src = ImageIO.read(new File(logoPath)); int width = src.getWidth(null); int height = src.getHeight(null); if (needCompress) { // 壓縮LOGO if (width > LOGO_WIDTH) { width = LOGO_WIDTH; } if (height > LOGO_HEIGHT) { height = LOGO_HEIGHT; } Image image = src.getScaledInstance(width, height, Image.SCALE_SMOOTH); BufferedImage tag = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics g = tag.getGraphics(); g.drawImage(image, 0, 0, null); // 繪製縮小後的圖 g.dispose(); src = image; } // 插入LOGO Graphics2D graph = source.createGraphics(); int x = (QRCODE_SIZE - width) / 2; int y = (QRCODE_SIZE - height) / 2; graph.drawImage(src, x, y, width, height, null); Shape shape = new RoundRectangle2D.Float(x, y, width, width, 6, 6); graph.setStroke(new BasicStroke(3f)); graph.draw(shape); graph.dispose(); } /** * 生成二維條碼(指定路徑儲存) * * @param content 內容 * @param imgPath logo圖片地址(內嵌圖片) * @param destPath 生成二維條碼存放地址 * @param needCompress 是否壓縮logo * @throws Exception */ public static void encode(String content, String imgPath, String destPath, boolean needCompress) throws Exception { BufferedImage image = QrCodeUtils.createImage(content, imgPath, needCompress); mkdirs(destPath); // String file = new Random().nextInt(99999999)+".jpg"; // ImageIO.write(image, FORMAT_NAME, new File(destPath+"/"+file)); ImageIO.write(image, FORMAT, new File(destPath)); } /** * 生成二維條碼(直接將二維條碼以圖片輸出流返回) * * @param content 內容 * @param imgPath logo圖片地址(內嵌圖片) * @param needCompress 是否壓縮logo * @return * @throws Exception */ public static BufferedImage encode(String content, String imgPath, boolean needCompress) throws Exception { BufferedImage image = QrCodeUtils.createImage(content, imgPath, needCompress); return image; } public static void mkdirs(String destPath) { File file = new File(destPath); // 當資料夾不存在時,mkdirs會自動建立多層目錄,區別於mkdir.(mkdir如果父目錄不存在則會丟擲異常) if (!file.exists() && !file.isDirectory()) { file.mkdirs(); } } /** * 生成二維條碼(內嵌LOGO) * * @param content 內容 * @param logoPath LOGO地址 * @param output 輸出流 * @param needCompress 是否壓縮LOGO * @throws Exception */ public static void encode(String content, String logoPath, OutputStream output, boolean needCompress) throws Exception { BufferedImage image = QrCodeUtils.createImage(content, logoPath, needCompress); ImageIO.write(image, FORMAT, output); } /** * 獲取指定檔案的輸入流,獲取logo * * @param logoPath 檔案的路徑 * @return */ public static InputStream getResourceAsStream(String logoPath) { return QrCodeUtils.class.getResourceAsStream(logoPath); } /** * 解析二維條碼 * * @param file * 二維條碼圖片 * @return * @throws Exception */ public static String decode(File file) throws Exception { BufferedImage image; image = ImageIO.read(file); if (image == null) { return null; } BufferedImageLuminanceSource source = new BufferedImageLuminanceSource(image); BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source)); Result result; Hashtable<DecodeHintType, Object> hints = new Hashtable<DecodeHintType, Object>(); hints.put(DecodeHintType.CHARACTER_SET, CHARSET); result = new MultiFormatReader().decode(bitmap, hints); String resultStr = result.getText(); return resultStr; } /** * 解析二維條碼 * * @param path * 二維條碼圖片地址 * @return * @throws Exception */ public static String decode(String path) throws Exception { return QrCodeUtils.decode(new File(path)); } //測試一: public static void main(String[] args) throws Exception { String text = "https://blog.csdn.net/weixin_43763430"; String logoPath = "D:\qrCode\logo.jpg"; String destPath = "D:\qrCode\csdn.jpg"; QrCodeUtils.encode(text,logoPath,destPath,true); } }
工具類中的主方法是指定了二維條碼連結的內容是部落格地址,並儲存在D:qrCodecsdn.jpg,二維條碼巢狀了頭像的圖片,期望實現的是生成二維條碼後被掃碼直接進入到部落格也沒。如若不嵌入頭像,直接將logoPath引數設為null。
//測試一: public static void main(String[] args) throws Exception { String text = "https://blog.csdn.net/weixin_43763430"; String logoPath = "D:\qrCode\logo.jpg"; String destPath = "D:\qrCode\csdn.jpg"; QrCodeUtils.encode(text,logoPath,destPath,true); }
執行該主方法後,可在指定路徑中看到生成的二維條碼圖片。
運用spring boot生成二維條碼無需將儲存二維條碼的圖片,只須前端呼叫springboot介面即可在頁面上顯示二維條碼。實現了實時生成二維條碼。Controller層介面程式碼範例如下:
@GetMapping("/anon/coupon/qrCodeTest") @ApiOperation(value = "獲取二維條碼") public void qrCodeTest(HttpServletResponse response) throws Exception { String text = "https://blog.csdn.net/weixin_43763430"; String logoPath = "D:\qrCode\logo.jpg"; //String destPath = "D:\qrCode\csdn.jpg"; QrCodeUtils.encode(text,logoPath,response.getOutputStream(),true); }
開啟瀏覽器存取該介面地址,頁面就會顯示生成的二維條碼。掃描二維條碼即可進入到部落格頁面。
二維條碼運用到各種業務中,通常需要根據不同使用者識別其相對應的內容,如以上範例是存取的部落格主頁面,如若想根據存取者傳遞的引數存取部落格中特定的文章,文章存取各篇文章是用的get請求方式,即可根據傳參實現get請求傳入不同引數生成二維條碼的內容不同。
@GetMapping("/anon/coupon/qrCodeTest") @ApiOperation(value = "獲取二維條碼") public void qrCodeTest(@RequestParam(value = "id") String id,HttpServletResponse response) throws Exception { String text = "https://blog.csdn.net/weixin_43763430/article/details/" + id; String logoPath = "D:\qrCode\logo.jpg"; //String destPath = "D:\qrCode\csdn.jpg"; QrCodeUtils.encode(text,logoPath,response.getOutputStream(),true); }
用瀏覽器存取該介面地址,頁面生成二維條碼,用手機掃描二維條碼即可跳轉到部落格中該篇文章頁面。
到此這篇關於Java Spring boot實現生成二維條碼的文章就介紹到這了,更多相關Java Spring boot生成二維條碼內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45