ScanBarcodes is a SwiftUI view that scans barcodes using an iPhone or iPad camera.
The framework uses AVFoundation for high performance video capture and barcode recognition. The view also provides optional control of the flashlight and the zoom level of the camera.
Licensed under the Apache License, Version 2.0 (the “License”);
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an “AS IS” BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Credits
This project was based on CodeScanner by Paul Hudson and liberally modified.
ScanBarcodes
ScanBarcodes is a SwiftUI view that scans barcodes using an iPhone or iPad camera.
The framework uses AVFoundation for high performance video capture and barcode recognition. The view also provides optional control of the flashlight and the zoom level of the camera.
Getting started
Try the demo application
Two important notes on usage:
The view takes two required arguments and two optional arguments:
barcodeTypes: [AVMetadataMachineReadableCodeObject.ObjectType]
(required)zoomLevel : Binding<Int>
(optional, defaults to 1, values greater than 1 increase the zoom)flashlightOn: Binding<Bool>
(optional, defaults to false)completion: @escaping (Result<String, BarcodeScanError>) -> Void)
(required, a closure to execute when a result is obtained)Copyright
Copyright © 2021 California Institute of Technology. ALL RIGHTS RESERVED. United States Government Sponsorship Acknowledged.
License
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Credits
This project was based on CodeScanner by Paul Hudson and liberally modified.