<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
二維條形碼是用某種特定的幾何圖形按一定規律在平面(二維方向上)分佈的黑白相間的圖形記錄資料符號資訊的,在程式碼編制上巧妙地利用構成計算機內部邏輯基礎的“0”、“1”位元流的概念,使用若干個與二進位制相對應的幾何形體來表示文字數值內容資訊,通過圖象輸入裝置或光電掃描裝置自動識讀以實現資訊自動處理。二維條碼具有條碼技術的一些共性:每種碼制有其特定的字元集;每個字元佔有一定的寬度;具有一定的校驗功能等。同時還具有對不同行的資訊自動識別功能、及處理圖形旋轉變化等特點。
二維條碼糾錯級別
二維條碼糾錯級別指的是在識別二維條碼時,對於損壞或模糊的二維條碼的容錯能力。
一般來說,二維條碼有四個糾錯級別:
總結:一般來說,使用較高的糾錯級別會導致生成的二維條碼更大,但是它的容錯能力也會更強。
ZXing(Zebra Crossing)是Google開發的一個二維條碼解析和生成的開源庫。
官網地址:http://code.google.com/p/zxing/
通過Java呼叫Zxing實現二維條碼的生成
<dependency> <groupId>com.google.zxing</groupId> <artifactId>javase</artifactId> <version>3.3.0</version> </dependency>
具體實現程式碼如下:
package QrCodeUtil; import java.awt.BasicStroke; import java.awt.Color; import java.awt.Graphics2D; import java.awt.image.BufferedImage; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream; import java.util.Date; import java.util.Hashtable; import javax.imageio.ImageIO; import com.alibaba.druid.util.StringUtils; import com.google.zxing.BarcodeFormat; import com.google.zxing.EncodeHintType; import com.google.zxing.MultiFormatWriter; import com.google.zxing.WriterException; import com.google.zxing.common.BitMatrix; import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel; /** * 生成二維條碼 */ public class QrCodeUtil { private static final int BLACK = 0xFF000000; private static final int WHITE = 0xFFFFFFFF; private static final int margin = 0; private static final int LogoPart = 4; public static void main(String[] args) throws WriterException { //二維條碼內容 String content = "IT技術分享社群,一個有態度的網際網路社群交流平臺"; String logoPath = "D:\logo.png"; // 二維條碼中間的logo資訊 非必須 String format = "jpg"; int width = 120; // 二維條碼寬度 int height = 120;// 二維條碼高度 // 設定二維條碼矩陣的資訊 BitMatrix bitMatrix = setBitMatrix(content, width, height); // 設定輸出流 OutputStream outStream = null; String path = "d:/Code" + new Date().getTime() + ".png";//設定二維條碼的檔名 try { outStream = new FileOutputStream(new File(path)); // 目前 針對容錯等級為H reduceWhiteArea 二維條碼空白區域的大小 根據實際情況設定,如果二維條碼內容長度不固定的話 需要自己根據實際情況計算reduceWhiteArea的大小 writeToFile(bitMatrix, format, outStream, logoPath, 5); outStream.close(); } catch (Exception e) { e.printStackTrace(); } } /** * 設定生成二維條碼矩陣資訊 * @param content 二維條碼圖片內容 * @param width 二維條碼圖片寬度 * @param height 二維條碼圖片高度 * @throws WriterException */ private static BitMatrix setBitMatrix(String content, int width, int height) throws WriterException { BitMatrix bitMatrix = null; Hashtable<EncodeHintType, Object> hints = new Hashtable<EncodeHintType, Object>(); hints.put(EncodeHintType.CHARACTER_SET, "UTF-8"); // 指定編碼方式,避免中文亂碼 hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H); // 指定糾錯等級 如果二維條碼裡面的內容比較多的話推薦使用H 容錯率30%, 這樣可以避免一些掃描不出來的問題 hints.put(EncodeHintType.MARGIN, margin); // 指定二維條碼四周白色區域大小 官方的這個方法目前沒有沒有作用預設設定為0 bitMatrix = new MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE, width, height, hints); return bitMatrix; } /** * @param matrix * @param format * @param outStream * @param logoPath logo圖片 * @param reduceWhiteArea 二維條碼空白區域設定 * @throws IOException */ private static void writeToFile(BitMatrix matrix, String format, OutputStream outStream, String logoPath, int reduceWhiteArea) throws IOException { BufferedImage image = toBufferedImage(matrix, reduceWhiteArea); // 如果設定了二維條碼裡面的logo 加入LOGO水印 if (!StringUtils.isEmpty(logoPath)) { image = addLogo(image, logoPath); } ImageIO.write(image, format, outStream); } /** * * @param matrix * @param reduceWhiteArea * @return */ private static BufferedImage toBufferedImage(BitMatrix matrix, int reduceWhiteArea) { int width = matrix.getWidth(); int height = matrix.getHeight(); BufferedImage image = new BufferedImage(width - 2 * reduceWhiteArea, height - 2 * reduceWhiteArea, BufferedImage.TYPE_3BYTE_BGR); for (int x = reduceWhiteArea; x < width - reduceWhiteArea; x++) { for (int y = reduceWhiteArea; y < height - reduceWhiteArea; y++) { image.setRGB(x - reduceWhiteArea, y - reduceWhiteArea, matrix.get(x, y) ? BLACK : WHITE); } } return image; } /** * 給二維條碼圖片中繪製logo資訊 非必須 * @param image 二維條碼圖片 * @param logoPath logo圖片路徑 */ private static BufferedImage addLogo(BufferedImage image, String logoPath) throws IOException { Graphics2D g = image.createGraphics(); BufferedImage logoImage = ImageIO.read(new File(logoPath)); // 計算logo圖片大小,可適應長方形圖片,根據較短邊生成正方形 int width = image.getWidth() < image.getHeight() ? image.getWidth() / LogoPart : image.getHeight() / LogoPart; int height = width; // 計算logo圖片放置位置 int x = (image.getWidth() - width) / 2; int y = (image.getHeight() - height) / 2; // 在二維條碼圖片上繪製中間的logo g.drawImage(logoImage, x, y, width, height, null); // 繪製logo邊框,可選 g.setStroke(new BasicStroke(2)); // 畫筆粗細 g.setColor(Color.WHITE); // 邊框顏色 g.drawRect(x, y, width, height); // 矩形邊框 logoImage.flush(); g.dispose(); return image; } }
到此這篇關於Java使用Zxing二維條碼生成的文章就介紹到這了,更多相關Java用Zxing二維條碼生成內容請搜尋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