MxABC / LBXScan

A barcode and qr code scanner (二维码、扫码、扫一扫、ZXing、ZBar、iOS系统AVFoundation扫码封装,扫码界面效果封装)
MIT License
3.23k stars 679 forks source link

晚上扫描会自动感光打开手电筒吗 #199

Open moselon opened 4 years ago

zhangkn commented 3 years ago

这个很简单,可以自己监听代理方法。

具体是这样的:(brightnessValue 值代表光线强度,值越小代表光线越暗)

` @property (nonatomic, strong) AVCaptureVideoDataOutput *videoDataOutput; // 创建摄像数据输出流,用于识别光线强弱 _videoDataOutput = [[AVCaptureVideoDataOutput alloc] init];

/// MARK: Defines an interface for delegates of AVCaptureVideoDataOutput to receive captured video sample buffers and be notified of late sample buffers that were dropped. // /// MARK: 亮度变化

} `