亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術文章
文章詳情頁

Java 生成帶Logo和文字的二維碼

瀏覽:8日期:2022-08-13 17:58:57

ZXing 是一個開放源碼的,用Java實現的多種格式的1D/2D條碼圖像處理庫,它包含了聯系到其他語言的端口。Zxing 可以實現使用手機的內置的攝像頭完成條形碼的掃描及解碼。本章講解用 ZXing 生成和掃碼二維碼。

依賴

在Java項目中pom.xml加入:

<dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>${version}</version></dependency><dependency> <groupId>com.google.zxing</groupId> <artifactId>javase</artifactId> <version>${version}</version></dependency>

當前最新版本是3.4.1,如果是Java開發的Android項目則引入 android-core 。

生成二維碼生成普通二維碼

// 二維碼內容String text = 'https://engr-z.com';// 二維碼大小int width = 500, height = 500;// 二維碼輸出文件File file = new File('/home/engr-z/qrcode.png');QRCodeWriter writer = new QRCodeWriter();BitMatrix m = writer.encode(text, BarcodeFormat.QR_CODE, width, height);MatrixToImageWriter.writeToPath(m, 'png', file.toPath());

如果內容較多,需要增大二維碼尺寸。尺寸小內容多,二維碼圖形越復雜越難識別。

生成帶Logo二維碼

// 二維碼內容String text = 'https://engr-z.com';// 二維碼大小int width = 500, height = 500;// 二維碼參數CodeStyle style = new CodeStyle();style.setWidth(width);style.setHeight(height);Map<EncodeHintType, Object> hints = new HashMap<>();//內容編碼格式hints.put(EncodeHintType.CHARACTER_SET, 'UTF-8');// 指定糾錯等級hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);//設置二維碼邊的空度,非負數hints.put(EncodeHintType.MARGIN, 1);// 生成二維碼圖片QRCodeWriter writer = new QRCodeWriter();BitMatrix bm = writer.encode(text, BarcodeFormat.QR_CODE, style.getWidth(), style.getHeight(), hints);int margin = style.getMargin();int tempM = margin*2;int[] rec = bm.getEnclosingRectangle(); //獲取二維碼圖案的屬性int resWidth = rec[2] + tempM;int resHeight = rec[3] + tempM;BitMatrix resMatrix = new BitMatrix(resWidth, resHeight); // 按照自定義邊框生成新的BitMatrixresMatrix.clear();for (int i = margin; i < resWidth - margin; i++) { //循環,將二維碼圖案繪制到新的bitMatrix中 for (int j = margin; j < resHeight - margin; j++){if (bm.get(i - margin + rec[0], j - margin + rec[1])){ resMatrix.set(i, j);} }}bm = resMatrix;int w = bm.getWidth();int h = bm.getHeight();BufferedImage qrcodeBuffImg = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);// 開始利用二維碼數據創建Bitmap圖片for (int x = 0; x < w; x++) { for (int y = 0; y < h; y++) {qrcodeBuffImg.setRGB(x, y, bm.get(x, y) ? style.getCodeColor() : style.getBackgroundColor()); }}/** * 讀取Logo圖片 */File logoFile = new File('/home/engr-z/logo.png');BufferedImage logo = ImageIO.read(logoFile);/** * 設置logo的大小,設置為二維碼圖片的20% */int widthLogo = logo.getWidth(null) > qrcodeBuffImg.getWidth() * 3 / 10 ? (qrcodeBuffImg.getWidth() * 3 / 10): logo.getWidth(null),heightLogo = logo.getHeight(null) > qrcodeBuffImg.getHeight() * 3 / 10 ? (qrcodeBuffImg.getHeight() * 3 / 10) : logo.getWidth(null);/** * logo在二維碼的位置 */int x = (qrcodeBuffImg.getWidth() - widthLogo) / 2;int y = (qrcodeBuffImg.getHeight() - heightLogo) / 2;Graphics2D qrcodeOutg = qrcodeBuffImg.createGraphics();// 把logo寫到二維碼圖片中間qrcodeOutg.drawImage(logo, x, y, widthLogo, heightLogo, null);qrcodeOutg.dispose();qrcodeBuffImg.flush();// 新的圖片,把帶logo的二維碼下面加上文字String desc = 'https://engr-z.com';int textHeight = 26;int textMargin = 10;BufferedImage outImage = new BufferedImage(qrcodeBuffImg.getWidth(), qrcodeBuffImg.getHeight() + textHeight + (textMargin * 2), BufferedImage.TYPE_4BYTE_ABGR);Graphics2D outg = outImage.createGraphics();// 畫二維碼到新的面板outg.drawImage(qrcodeBuffImg, 0, 0, qrcodeBuffImg.getWidth(), qrcodeBuffImg.getHeight(), null);outg.setFont(new Font('宋體', Font.BOLD, 26)); // 字體、字型、字號int strWidth = outg.getFontMetrics().stringWidth(desc);outg.setColor(Color.BLACK);outg.drawString(desc, (outImage.getWidth() - strWidth) / 2, outImage.getHeight() - textMargin);outg.dispose();// 二維碼輸出文件File file = new File('/home/engr-z/qrcode.png');ImageIO.write(outImage, 'png', file);

CodeStyle是我封裝的類,用來設置二維碼樣式:

/** * @author Engr-Z * @since 2020/12/18 */@Datapublic class CodeStyle { /** * 背景顏色,如:0xFFFFFFFF */ private int backgroundColor = 0xFFFFFFFF; /** * 碼顏色,如:0xFF000000 */ private int codeColor = 0xFF000000; /** * 二維碼寬,px */ private int width; /** * 二維碼高,px */ private int height; /** * 邊框大小 */ private int margin = 5;}

以下是我執行生成的二維碼:

Java 生成帶Logo和文字的二維碼

讀取二維碼

File qrcodeFile = new File('D:/qrcode.png');BufferedImage qrcodeImg = ImageIO.read(qrcodeFile);MultiFormatReader formatReader = new MultiFormatReader();//讀取指定的二維碼文件BinaryBitmap binaryBitmap= new BinaryBitmap(new HybridBinarizer(new BufferedImageLuminanceSource(qrcodeImg)));//定義二維碼參數Map<DecodeHintType, Object> hints= new HashMap<>();hints.put(DecodeHintType.CHARACTER_SET, 'utf-8');// 讀取Result result = formatReader.decode(binaryBitmap, hints);log.info('格式類型:{}', result.getBarcodeFormat());log.info('二維碼內容:{}', result.getText());鏈接

ZXing GitHub:https://github.com/zxing/zxing

以上就是Java 生成帶Logo和文字的二維碼的詳細內容,更多關于Java 生成二維碼的資料請關注好吧啦網其它相關文章!

標簽: Java
相關文章:
主站蜘蛛池模板: 免费观看黄a一级视频 | 中文字幕无线码欧美成人 | 久久天天躁狠狠躁夜夜中文字幕 | 国产精品久久久久久免费 | 日韩免费一区二区三区在线 | 欧美日韩一本大道香蕉欧美 | 日本在线日本中文字幕日本在线视频播放 | 在线观看亚洲 | 国产精品爱久久久久久久小 | 在线观看国产情趣免费视频 | 中文字幕一精品亚洲无线一区 | 日本高清不卡免费 | 国产成人综合精品 | 看片视频在线观看 | 综合久久久久 | 26uuu老色哥 26uuu欧美视频在线观看 | 久久国产精品超级碰碰热 | 美女扒开胸露出奶乳免费 | 国产大量女主播精品视频 | 青草青青产国视频在线 | 国产美女无遮挡软件 | 国产毛片毛片精品天天看 | 久久99精品福利久久久 | 欧美末成年videos丨 | 在线不卡| 特级xxxxx欧美孕妇孕交 | 视频二区 调教中字 知名国产 | 久久综合图区亚洲综合图区 | 久久久国产亚洲精品 | 青草资源视频在线高清观看 | 免费观看亚洲 | 在线亚洲精品国产成人二区 | 永久免费的网站 | 久久国产99 | 久久综合噜噜激激的五月天 | 成人国产精品免费网站 | 香蕉在线精品视频在线观看2 | 婷婷99视频精品全部在线观看 | videosg最新欧美另类 | 看黄视频在线观看 | 久久久亚洲欧洲日产国码606 |