ZXing-core生成二維碼和解析
現在二維碼這麼流行的時刻,也必須知道二維碼是怎麼生成。現在我們就來看看,是怎麼生成的。
其實主要是利用goggle釋出的jar來使用:本文轉自點選開啟連結
1、二維碼的生成
二維碼的生成需要藉助MatrixToImageWriter類,該類是由Google提供的,可以將該類拷貝到原始碼中,這裡我將該類的原始碼貼上,可以直接使用。
直接可以生成二維碼的程式碼
當我們能發現,這個程式碼拷貝上後發現有一個MatrixToImageWriter報錯,所以需要我們去找,但是這裡我貼出程式碼,可以直接使用。public void test1() throws Exception{ String content = "www.baidu.com"; String path = "d://"; MultiFormatWriter multiFormatWriter = new MultiFormatWriter();//Zxing是Google提供的關於條碼 Map hints = new HashMap(); hints.put(EncodeHintType.CHARACTER_SET, "UTF-8"); BitMatrix bitMatrix = multiFormatWriter.encode(content, BarcodeFormat.QR_CODE, 400, 400,hints);//這裡是照片的大小 File file1 = new File(path,"my.jpg"); MatrixToImageWriter.writeToFile(bitMatrix, "jpg", file1); System.out.println("執行完畢"); }
import com.google.zxing.common.BitMatrix; import javax.imageio.ImageIO; import java.io.File; import java.io.OutputStream; import java.io.IOException; import java.awt.image.BufferedImage; public final class MatrixToImageWriter { private static final int BLACK = 0xFF000000; private static final int WHITE = 0xFFFFFFFF; private MatrixToImageWriter() {} public static BufferedImage toBufferedImage(BitMatrix matrix) { int width = matrix.getWidth(); int height = matrix.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, matrix.get(x, y) ? BLACK : WHITE); } } return image; } public static void writeToFile(BitMatrix matrix, String format, File file) throws IOException { BufferedImage image = toBufferedImage(matrix); if (!ImageIO.write(image, format, file)) { throw new IOException("Could not write an image of format " + format + " to " + file); } } public static void writeToStream(BitMatrix matrix, String format, OutputStream stream) throws IOException { BufferedImage image = toBufferedImage(matrix); if (!ImageIO.write(image, format, stream)) { throw new IOException("Could not write an image of format " + format); } } }
現在就可以d盤的根目錄下載看生成的二維碼了
二維碼解析
和生成一樣,我們需要一個輔助類( BufferedImageLuminanceSource),同樣該類Google也提供了,這裡我同樣將該類的原始碼貼出來,可以直接拷貝使用個,省去查詢的麻煩BufferedImageLuminanceSource import com.google.zxing.LuminanceSource; import java.awt.Graphics2D; import java.awt.geom.AffineTransform; import java.awt.image.BufferedImage; public final class BufferedImageLuminanceSource extends LuminanceSource { private final BufferedImage image; private final int left; private final int top; public BufferedImageLuminanceSource(BufferedImage image) { this(image, 0, 0, image.getWidth(), image.getHeight()); } public BufferedImageLuminanceSource(BufferedImage image, int left, int top, int width, int height) { super(width, height); int sourceWidth = image.getWidth(); int sourceHeight = image.getHeight(); if (left + width > sourceWidth || top + height > sourceHeight) { throw new IllegalArgumentException("Crop rectangle does not fit within image data."); } for (int y = top; y < top + height; y++) { for (int x = left; x < left + width; x++) { if ((image.getRGB(x, y) & 0xFF000000) == 0) { image.setRGB(x, y, 0xFFFFFFFF); // = white } } } this.image = new BufferedImage(sourceWidth, sourceHeight, BufferedImage.TYPE_BYTE_GRAY); this.image.getGraphics().drawImage(image, 0, 0, null); this.left = left; this.top = top; } @Override public byte[] getRow(int y, byte[] row) { if (y < 0 || y >= getHeight()) { throw new IllegalArgumentException("Requested row is outside the image: " + y); } int width = getWidth(); if (row == null || row.length < width) { row = new byte[width]; } image.getRaster().getDataElements(left, top + y, width, 1, row); return row; } @Override public byte[] getMatrix() { int width = getWidth(); int height = getHeight(); int area = width * height; byte[] matrix = new byte[area]; image.getRaster().getDataElements(left, top, width, height, matrix); return matrix; } @Override public boolean isCropSupported() { return true; } @Override public LuminanceSource crop(int left, int top, int width, int height) { return new BufferedImageLuminanceSource(image, this.left + left, this.top + top, width, height); } @Override public boolean isRotateSupported() { return true; } @Override public LuminanceSource rotateCounterClockwise() { int sourceWidth = image.getWidth(); int sourceHeight = image.getHeight(); AffineTransform transform = new AffineTransform(0.0, -1.0, 1.0, 0.0, 0.0, sourceWidth); BufferedImage rotatedImage = new BufferedImage(sourceHeight, sourceWidth, BufferedImage.TYPE_BYTE_GRAY); Graphics2D g = rotatedImage.createGraphics(); g.drawImage(image, transform, null); g.dispose(); int width = getWidth(); return new BufferedImageLuminanceSource(rotatedImage, top, sourceWidth - (left + width), getHeight(), width); } }
解析二維碼的程式碼
MultiFormatReader formatReader = new MultiFormatReader();
String filePath = "圖片的路徑";
File file = new File(filePath);
BufferedImage image = ImageIO.read(file);;
LuminanceSource source = new BufferedImageLuminanceSource(image);
Binarizer binarizer = new HybridBinarizer(source);
BinaryBitmap binaryBitmap = new BinaryBitmap(binarizer);
Map hints = new HashMap();
hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");
Result result = formatReader.decode(binaryBitmap,hints);
System.out.println("result = "+ result.toString());
System.out.println("resultFormat = "+ result.getBarcodeFormat());
System.out.println("resultText = "+ result.getText());
} catch (Exception e) {
e.printStackTrace();
}
現在這樣可以在控制檯看到二維碼的內容。
純粹是筆記。
相關推薦
ZXing-core生成二維碼和解析
現在二維碼這麼流行的時刻,也必須知道二維碼是怎麼生成。現在我們就來看看,是怎麼生成的。 其實主要是利用goggle釋出的jar來使用:本文轉自點選開啟連結 1、二維碼的生成 二維碼的生成需要藉助MatrixToImageWriter類,該類是由Google提供的
java二維碼工具類:生成二維碼和解析二維碼
利用google 的 zxing 生成和解析二維碼。 1、下載或maven加入依賴,我這選用的是3.3.0版本, jar下載地址: http://mvnrepository.com/artifact/com.google.zxing/core/3.3.0 http://mv
【java】google的zxing架包生成二維碼和讀取二維碼【可帶文字和logo】
oms cga dispose framework 增加 span 記錄 ora obj 承接RC4生成不重復字符串的需求之後,因為優惠碼要方便用戶使用的緣故,所以思來想去,覺得還是直接生成二維碼給用戶直接掃比較實用,也不用用戶專門記錄冗長的優惠碼編號。 =========
zxing生成二維碼和條碼
/*** * 生成二維碼方法 * @param str 生成內容 * @param widthHeight 寬度和高度 * @return * @throws WriterException */ public static Bit
Android平臺利用Zxing生成二維碼與解析圖片中的二維碼
轉載請註明http://blog.csdn.net/houkai6/article/details/47102733 1. 生成二維碼 public final class EncodingHandler { private static final int BLACK
c# zxing生成二維碼和列印
生成二維碼程式碼 asset=“要生成的字串”; public static Bitmap CreateQRCode(string asset) { EncodingOptions options = new QrCodeEncodingOptions {
Zxing 生成二維碼和條形碼去掉白邊
原始碼下載: 需求:根據輸入內容,生成條形碼或者二維碼。 我們大多數會選擇Zxing。因為jar包較小。且使用簡單。根據內容生成二維碼的工具類也是一搜一大堆。上面的原始碼裡面也提供了一個。但是我們仔細看了下。會發現。不管生成的是條形碼還是二維碼都會有一部分的白邊。如圖
Zxing生成二維碼和新增Logo
1.一個專案開始,都需要做準備,準備一個Zxing。jar包來支撐生成二維碼 接下來直接上程式碼, 生成普通二維碼 先寫一個生成二維碼的方法 //生成二維碼 private B
C# ZXing.Net生成二維碼、識別二維碼、生成帶Logo的二維碼(一)
tree bit 字符串 單位 images j2se lba 支付 .net 一.ZXing.Net 源代碼地址:http://zxingnet.codeplex.com/ 也可以使用Nuget包管理,添加如圖: 說明:ZXing是一個開源Java類庫用於解析多種格式的
c# 使用ZXing.Net生成二維碼
iter mat 工程 lan bitmap 設置 前段時間 evel 調用 生活中使用二維碼還是很多的,前段時間公司領導讓研究一下二維碼,所以,在這寫下研究的心得。 生成二維碼的途徑一般有兩種,一是,通過前端方式生成二維碼使用 QRCode.js生成二維碼,二就是通過
Java 中使用 google.zxing 快捷生成二維碼(附工具類原始碼)
移動網際網路時代,基於手機端的各種活動掃碼和收付款碼層出不窮;那我們如何在Java中生成自己想要的二維碼呢?下面就來講講在Java開發中使用 google.zxing 生成二維碼。 一般情況下,Java生成二維碼的方式有三種,一種是基於 google.zxing ,是google公司出的;一種
java生成二維碼/java解析二維碼
text level hang err 定義 image binary port style 二維碼的優缺點 優點:1. 高密度編碼,信息容量大;2.編碼範圍廣;3.容錯能力強;4.譯碼可靠性高;5.可引入加密措施;6.成本低,易制作,持久耐用。 缺點:
zxing框架生成二維碼
1.1 實現思路 在idea中搭建web專案 配置依賴jar包 定義控制器類 使用zxing核心api生成二維碼 1.2 開發步驟 1.2.1 配置依賴jar <!-- 配置二維碼生成的框架 -->
生成二維碼 和 掃描二維碼
導依賴 implementation 'cn.bingoogolapple:bga-qrcode-zxing:1.3.4' 許可權 <uses-permission android:name="android.permission.CAMERA" /> <uses-pe
Zxing簡單生成二維碼
1.匯入依賴 implementation 'cn.bingoogolapple:bga-qrcode-zxing:1.2.5' 2.程式碼 //二維碼圖片控制元件 final ImageView imageView = view.findViewById(R
ZXing.dll 生成二維碼 C# winform net4.5
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using Sys
C# 生成二維碼,解析二維碼
資源下載連結:點選開啟連結 很抱歉通知:這個下載二維碼資源這個需要安裝dev外掛。因為我用了dev控制元件,沒有安裝dev直接下載執行會報錯缺少dll。所以很是抱歉。 先看下介面: 程式碼: using System; using System.Col
將連結轉成base64格式生成二維碼和把頁面生成圖片
將連結轉成base64格式 function getUrlBase64 (url, etx, callback) { var canvas = document.createElement('canvas') var ctx = canvas.
java生成二維碼並解析二維碼(QRCode方式)
準備工作 下載jar http://www.swetake.com/qrcode/java/qr_java.html https://zh.osdn.net/projects/qrcode/downloads/28391/qrcode.zip/ jar下載完畢後新建專案
.net core 生成二維碼
其實生成二維碼的元件有很多種,如:QrcodeNet,ZKWeb.Fork.QRCoder,QR