Question

I am using zbar sdk in my ios app. I want to dim the camera flash light. In ios documentation I have found AVCaptureDevice

- (BOOL)setTorchModeOnWithLevel:(float)torchLevel error:(NSError **)outError

In AVCaptureDevice class setTorchModeOnWithLevel function sets the light level between 0-1. In zbar sdk I have found this object in readerview class I am using following code

    ZBarReaderViewController *mReader =  [[ZBarReaderViewController alloc] init];
    mReader.showsZBarControls = NO;
    mReader.showsHelpOnFail = NO;
    mReader.cameraFlashMode = UIImagePickerControllerCameraFlashModeOff;

    mReader.readerDelegate = self;
    //    reader.cameraDevice = UIImagePickerControllerCameraDeviceFront;
    mReader.supportedOrientationsMask = ZBarOrientationMaskAll;
    CGRect cropRect = CGRectMake(0, 0, cameraView.frame.size.width , cameraView.frame.size.height);

    mReader.view.frame = cropRect;

    mReader.cameraOverlayView = [self setOverlayPickerView];
    AVCaptureDevice *mDevice = mReader.readerView.device; //mReader.readerView.device returns object of AVCaptureDevice

When I try to access AVCaptureDevice functions it show nothing in suggestion and when I write it manually then it give error.

[mDevice setTorchModeOnWithLevel:0.5 error:error];

How I can use AVCaptureDevice object so that I can set the dim level of flash light??

Was it helpful?

Solution 2

I was calling following function which give error

[mDevice setTorchModeOnWithLevel:0.5 error:error];

The reason of error was that I have not included AVFoundation library in build setting. After including my error resolves @rakeshNS we can dim the zbar sdk light by using

AVCaptureDevice *mDevice = mReader.readerView.device;
[mDevice setTorchModeOnWithLevel:0.5 error:nil];

Thanks to everybody

OTHER TIPS

There is no API in Zbar SDK to control Flash light level. You just can Turn On/Turn Off the flash.

I am using below code hope it can help you :)

reader = [ZBarReaderViewController new];
reader.readerDelegate = self;

reader.readerView.torchMode = 2;
reader.showsZBarControls = FALSE;
reader.tracksSymbols = YES;
[reader.scanner setSymbology: ZBAR_ISBN13
                      config: ZBAR_CFG_ENABLE
                          to: 0];
reader.readerView.zoom = 1.0;

reader.cameraOverlayView = [self setLayoutView];


if([[defaults valueForKey:@"flashLight1"] isEqualToString:@"off"] )
    reader.cameraFlashMode = UIImagePickerControllerCameraFlashModeOff;
else
reader.cameraFlashMode = UIImagePickerControllerCameraFlashModeOn;
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top