1. 程式人生 > >ZBar 實現掃描長方形二維碼

ZBar 實現掃描長方形二維碼

原始碼:https://github.com/YoXung/ZBarQR

匯入檔案如下:


1、設定sessionPreset可以掃描小二維碼:

readerView = [[ZBarReaderViewalloc]init];

readerView.session.sessionPreset =AVCaptureSessionPresetHigh;

2、可以在返回結果中只處理二維碼:

zbar_symbol_type_t type = zbar_symbol_get_type(symbol);

if (type !=ZBAR_QRCODE) {

return;

}

result = [

NSStringstringWithUTF8String:zbar_symbol_get_data(symbol)];