Почему я не могу декодировать штрих-код с помощью MultiFormatReader с последующим кодом?

//MultiFormatReader
MultiFormatReader reader = new MultiFormatReader();
Map<DecodeHintType, Object> hints = new HashMap<>();
List<BarcodeFormat> formatList = new ArrayList<>();
hints.put(DecodeHintType.TRY_HARDER, Boolean.TRUE);
hints.put(DecodeHintType.POSSIBLE_FORMATS,
    EnumSet.allOf(BarcodeFormat.class));
hints.put(DecodeHintType.PURE_BARCODE, Boolean.FALSE);
hints.put(DecodeHintType.ASSUME_GS1, Boolean.TRUE);

//encode
reader.decode(binaryBitmap, hints);

другой код идеально подходит для декодирования qrcode, в чем может быть проблема? Я хочу разработать приложение, которое может декодировать qrcode или штрих-код.

0 ответов

Другие вопросы по тегам