mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
105 lines
4 KiB
Java
105 lines
4 KiB
Java
package com.google.zxing.datamatrix;
|
|
|
|
import com.google.zxing.BarcodeFormat;
|
|
import com.google.zxing.BinaryBitmap;
|
|
import com.google.zxing.ChecksumException;
|
|
import com.google.zxing.DecodeHintType;
|
|
import com.google.zxing.FormatException;
|
|
import com.google.zxing.NotFoundException;
|
|
import com.google.zxing.Reader;
|
|
import com.google.zxing.Result;
|
|
import com.google.zxing.ResultMetadataType;
|
|
import com.google.zxing.ResultPoint;
|
|
import com.google.zxing.common.BitMatrix;
|
|
import com.google.zxing.common.DecoderResult;
|
|
import com.google.zxing.common.DetectorResult;
|
|
import com.google.zxing.datamatrix.decoder.Decoder;
|
|
import com.google.zxing.datamatrix.detector.Detector;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class DataMatrixReader implements Reader {
|
|
private static final ResultPoint[] NO_POINTS = new ResultPoint[0];
|
|
private final Decoder decoder = new Decoder();
|
|
|
|
@Override // com.google.zxing.Reader
|
|
public void reset() {
|
|
}
|
|
|
|
@Override // com.google.zxing.Reader
|
|
public Result decode(BinaryBitmap binaryBitmap) throws NotFoundException, ChecksumException, FormatException {
|
|
return decode(binaryBitmap, null);
|
|
}
|
|
|
|
@Override // com.google.zxing.Reader
|
|
public Result decode(BinaryBitmap binaryBitmap, Map<DecodeHintType, ?> map) throws NotFoundException, ChecksumException, FormatException {
|
|
DecoderResult decode;
|
|
ResultPoint[] points;
|
|
if (map != null && map.containsKey(DecodeHintType.PURE_BARCODE)) {
|
|
decode = this.decoder.decode(extractPureBits(binaryBitmap.getBlackMatrix()));
|
|
points = NO_POINTS;
|
|
} else {
|
|
DetectorResult detect = new Detector(binaryBitmap.getBlackMatrix()).detect();
|
|
decode = this.decoder.decode(detect.getBits());
|
|
points = detect.getPoints();
|
|
}
|
|
Result result = new Result(decode.getText(), decode.getRawBytes(), points, BarcodeFormat.DATA_MATRIX);
|
|
List<byte[]> byteSegments = decode.getByteSegments();
|
|
if (byteSegments != null) {
|
|
result.putMetadata(ResultMetadataType.BYTE_SEGMENTS, byteSegments);
|
|
}
|
|
String eCLevel = decode.getECLevel();
|
|
if (eCLevel != null) {
|
|
result.putMetadata(ResultMetadataType.ERROR_CORRECTION_LEVEL, eCLevel);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
private static BitMatrix extractPureBits(BitMatrix bitMatrix) throws NotFoundException {
|
|
int[] topLeftOnBit = bitMatrix.getTopLeftOnBit();
|
|
int[] bottomRightOnBit = bitMatrix.getBottomRightOnBit();
|
|
if (topLeftOnBit == null || bottomRightOnBit == null) {
|
|
throw NotFoundException.getNotFoundInstance();
|
|
}
|
|
int moduleSize = moduleSize(topLeftOnBit, bitMatrix);
|
|
int i = topLeftOnBit[1];
|
|
int i2 = bottomRightOnBit[1];
|
|
int i3 = topLeftOnBit[0];
|
|
int i4 = ((bottomRightOnBit[0] - i3) + 1) / moduleSize;
|
|
int i5 = ((i2 - i) + 1) / moduleSize;
|
|
if (i4 <= 0 || i5 <= 0) {
|
|
throw NotFoundException.getNotFoundInstance();
|
|
}
|
|
int i6 = moduleSize / 2;
|
|
int i7 = i + i6;
|
|
int i8 = i3 + i6;
|
|
BitMatrix bitMatrix2 = new BitMatrix(i4, i5);
|
|
for (int i9 = 0; i9 < i5; i9++) {
|
|
int i10 = (i9 * moduleSize) + i7;
|
|
for (int i11 = 0; i11 < i4; i11++) {
|
|
if (bitMatrix.get((i11 * moduleSize) + i8, i10)) {
|
|
bitMatrix2.set(i11, i9);
|
|
}
|
|
}
|
|
}
|
|
return bitMatrix2;
|
|
}
|
|
|
|
private static int moduleSize(int[] iArr, BitMatrix bitMatrix) throws NotFoundException {
|
|
int width = bitMatrix.getWidth();
|
|
int i = iArr[0];
|
|
int i2 = iArr[1];
|
|
while (i < width && bitMatrix.get(i, i2)) {
|
|
i++;
|
|
}
|
|
if (i == width) {
|
|
throw NotFoundException.getNotFoundInstance();
|
|
}
|
|
int i3 = i - iArr[0];
|
|
if (i3 != 0) {
|
|
return i3;
|
|
}
|
|
throw NotFoundException.getNotFoundInstance();
|
|
}
|
|
}
|