Reputation: 31
I need to read a pdf417 barcode from a taken photo with React Native. I tried react-native-camera, but it only reads barcodes from camera. Have anyone used another library to do this?
Thanks.
Upvotes: 0
Views: 960
Reputation: 178
If you want to decode barcode from image(if I understood correctly your problem), react-native-camera does not support this feature. A good alternative for this will be Barcode recognition tools in JS. For instance, have a look at this link and demos in it.
Good luck
Upvotes: 1