Rabbit-R1/switch port/java/sources/com/google/zxing/multi/MultipleBarcodeReader.java
2024-05-21 17:08:36 -04:00

14 lines
475 B
Java

package com.google.zxing.multi;
import com.google.zxing.BinaryBitmap;
import com.google.zxing.DecodeHintType;
import com.google.zxing.NotFoundException;
import com.google.zxing.Result;
import java.util.Map;
/* loaded from: classes3.dex */
public interface MultipleBarcodeReader {
Result[] decodeMultiple(BinaryBitmap binaryBitmap) throws NotFoundException;
Result[] decodeMultiple(BinaryBitmap binaryBitmap, Map<DecodeHintType, ?> map) throws NotFoundException;
}