BarcodeScanner
class BarcodeScanner : NSObject
一種條碼掃描器,可掃描圖片中的條碼。
-
傳回具有指定選項的條碼掃描器。
聲明
Swift
class func barcodeScanner(options: MLKBarcodeScannerOptions) -> Self
參數
options
包含條碼掃描器設定的選項。
傳回值
使用指定選項設定的條碼掃描器。
-
傳回含預設選項的條碼掃描器。
聲明
Swift
class func barcodeScanner() -> Self
傳回值
採用預設選項的條碼掃描器。
-
無法使用,使用類別方法。
-
處理指定圖片進行條碼掃描。
聲明
Swift
func process(_ image: MLKitCompatibleImage) async throws -> [MLKBarcode]
參數
image
要處理的圖片。
completion
掃描條碼或發生錯誤時,用於在主要佇列上回呼的處理常式。
-
傳回條碼會在指定圖片中產生結果;如果發生錯誤,則傳回
nil
。條碼掃描 會在呼叫執行緒上同步執行。建議您從主執行緒呼叫這個方法,以免封鎖 UI。身為 如果在主執行緒上呼叫這個方法,就會產生
NSException
。聲明
Swift
func results(in image: MLKitCompatibleImage) throws -> [MLKBarcode]
參數
image
要取得結果的圖片。
error
系統在取得結果時發生錯誤時,就會填入選用的錯誤參數。
傳回值
條碼陣列會產生指定圖片;如果發生錯誤,則會產生
nil
。