Currently working on a web project that requires scanning a QR code using the camera on the device. Unfortunately, iOS does not allow direct access to the camera for this purpose, so we have resorted to uploading a picture of the QR code instead.
The problem arises when the image uploaded contains additional information around the QR code, causing the libraries we are utilizing to be unable to decrypt the code. Simply capturing the QR code alone is proving to be challenging.
Are there any potential solutions that would allow us to crop out just the QR code portion of the image? Alternatively, is there a library available that can successfully decode the QR code even with extraneous information present in the image?