TW
TWilb/QKMRZScanner
Scan MRZ (Machine Readable Zone) from identity documents (passport, id, visa) using iPhone/iPad (iOS)
QKMRZScanner
Scans MRZ (Machine Readable Zone) from identity documents.
Installation
QKMRZScanner is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'QKMRZScanner'Setup
Assign QKMRZScannerView to the component responsible for displaying the camera view.
Subsequently connect this component to your UIViewController.
@IBOutlet weak var mrzScannerView: QKMRZScannerView!Start scanning
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
mrzScannerView.startScanning()
}Stop scanning
override func viewWillDisappear(_ animated: Bool) {
super.viewWillDisappear(animated)
mrzScannerView.stopScanning()
}Scanning Result
In order to retrieve the scanning results you need to implement QKMRZScannerViewDelegate.
class MRZScannerViewController: UIViewController, QKMRZScannerViewDelegate {
@IBOutlet weak var mrzScannerView: QKMRZScannerView!
override func viewDidLoad() {
super.viewDidLoad()
mrzScannerView.delegate = self
}
func mrzScannerView(_ mrzScannerView: QKMRZScannerView, didFind scanResult: QKMRZScanResult) {
print(scanResult)
}
}License
This project is licensed under the MIT License - see the LICENSE file for details
On this page
Contributors
MIT License
Created July 13, 2019
Updated July 13, 2019

