Zxing を使用して QR コードを生成する Java の簡単な例

高洛峰
リリース: 2017-01-07 10:58:52
オリジナル
1222 人が閲覧しました

Zxing は Google が提供するバーコード (一次元コード、二次元コード) 解析ツールであり、QR コードを生成および解析する方法を提供します。 ここで、Zxing を使用して Java を使用して QR コードを生成および解析する方法を簡単に紹介します。

1. QRコードの生成

1.1 Zxing-core.jar パッケージをクラスパスに追加します。

1.2 QR コードの生成には、Google が提供する MatrixToImageWriter クラスの助けが必要です。このクラスをソース コードにコピーして、直接使用できます。

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);
   }
  }
  
 }
ログイン後にコピー

1.3 QRコードを生成する実装コードを書く

try {
        
   String content = "120605181003;http://www.cnblogs.com/jtmjx";
   String path = "C:/Users/Administrator/Desktop/testImage";
    
   MultiFormatWriter multiFormatWriter = new MultiFormatWriter();
    
   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,"餐巾纸.jpg");
   MatrixToImageWriter.writeToFile(bitMatrix, "jpg", file1);
    
 } catch (Exception e) {
   e.printStackTrace();
 }
ログイン後にコピー

これで、実行するとQRコード画像が生成できるようになります。 次に、QR コードを解析する方法を見てみましょう

2. QR コードを解析する

2.1 Zxing-core.jar パッケージをクラスパスに追加します。

2.2 生成と同様に、Google から提供されている補助クラス (BufferedImageLuminanceSource) も必要です。このクラスのソース コードもここに掲載します。これをコピーして直接使用すると、検索の手間が省けます。

2.3 QR コードを解析するための実装コードを作成します

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 コードの内容が出力されることがわかります。

これまでのところ、Zxing を使用して QR コードを生成および解析するデモンストレーションは完了しています。主に自分用のメモとして、および必要な方の便宜のために使用されています。

Zxing を使用して Java で QR コードを生成する上記の簡単な例は、エディターによって共有されたすべてのコンテンツです。参考にしていただければ幸いです。また、PHP 中国語 Web サイトをサポートしていただければ幸いです。

Zxing を使用して QR コードを生成する Java の簡単な例に関するその他の関連記事については、PHP 中国語 Web サイトに注目してください。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート