Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Scan multiple barcodes with ZXing

I am currently trying to get ZXing to scan some barcodes. It's doing that job fine so far (via intent).

Now I would like to make it decode multiple barcodes at once (they are placed beneath each other) without having to scan each barcode individually.

Is this even possible via intent? If not, a short example of how to do it the other way would be appreciated :)

I've so far only found a pretty old thread where a user requested this feature and some developers seem to have integrated it. However, I am unable to find any tutorial explaining the utilization.

The thread can be found here.

like image 601
Betaminos Avatar asked Nov 14 '22 01:11

Betaminos


1 Answers

It's not possible by Intent, but it is certainly possible within the project. You would have to write your own scanning component, then use the core library's support (which you've found) to find multiple barcodes and do something with them.

like image 113
Sean Owen Avatar answered Dec 06 '22 18:12

Sean Owen