Reputation: 5180
Are there any free alternatives to Zxing's PDF 417 barcode detector and decoder?
The following 2 iOS libraries cannot seem to scan these type of bar codes, even though they say it's supported:
I've read on Zxing's SVN/Google Code page that PDF 417 decoding is in the alpha stage, which probably explains why my the barcodes I'm testing on aren't being recognized.
Upvotes: 2
Views: 1184
Reputation: 1989
With iOS7 or above, you don't have to rely on third-party libraries for barcode detection or decoding. AVFoundation has built-in (and hence free) support for detecting both 1D and 2D barcodes including PDF417 and QR codes using the device camera.
You can find working examples here and here.
Upvotes: 1
Reputation: 5180
After a few days of research and testing, I've come across the following, effective, yet non-free solutions:
Upvotes: 2