ZXing-core QR코드 생성 방법 및 해석

6982 단어 ZXingcoreQR코드
QR코드가 없는 곳이 없어요. 스캔하면 선물이 있어요. 지금 QR코드가 이렇게 유행하는데 QR코드가 어떻게 생성되는지 잘 모르시겠죠. 지금 편집은 본고를 공유해서 QR코드 생성 방법을 배울 수 있도록 도와줍니다.
사실 주로 goggle에서 발표한jar를 이용하여 이 기능을 사용합니다.
1. QR코드의 생성
Zxing-core.jar 패키지를classpath에 추가합니다.
QR코드의 생성은 Matrix To Image Writer 클래스를 사용해야 합니다. 이 클래스는 Google에서 제공한 것입니다. 이 클래스를 원본 코드로 복사할 수 있습니다. 여기서 이 클래스의 원본 코드를 붙여서 직접 사용할 수 있습니다.
QR코드를 직접 생성할 수 있는 코드

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(" "); 
} 
이 코드를 복사한 후에 Matrix To Image Writer가 오류를 보고한 것을 발견할 수 있기 때문에 우리가 찾아야 하지만, 여기에 코드를 붙여서 직접 사용할 수 있습니다.

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디스크의 루트 디렉터리에서 생성된 QR코드를 다운로드할 수 있습니다.
QR코드 해석
생성과 마찬가지로, 우리는 보조 클래스(Buffered Image Luminance Source)가 필요합니다. 같은 종류의 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); 
} 
} 
QR 코드 해석 코드

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()); 
tch (Exception e) { 
e.printStackTrace(); 
이렇게 하면 콘솔에서 QR코드의 내용을 볼 수 있다.
위에서 말한 것은 여러분이 소개해 드린 ZXing-core의 QR코드 생성 방법과 해석에 관한 지식입니다. 여러분께 도움이 되었으면 좋겠습니다. 궁금한 점이 있으면 저에게 메시지를 남겨 주시면 제때에 답장해 드리겠습니다.여기에서도 저희 사이트에 대한 지지에 감사드립니다!

좋은 웹페이지 즐겨찾기