The advantage of using native is that the scanning is particularly fast and efficient, using avfoundation to scan the QR code, and the main limitation is to limit the size of the scanned QR code. (The default is full screen scan)
First, there are several classes to use.
@property (Strong, nonatomic) Avcapturedevice * device;
@property (Strong, nonatomic) avcapturedeviceinput * input;
@property (Strong, nonatomic) avcapturemetadataoutput * OUTPUT;
@property (Strong, Nonatomic) avcapturesession * session;
@property (Strong, nonatomic) Avcapturevideopreviewlayer * preview;
The following respectively create their
Device
_device = [Avcapturedevice defaultdevicewithmediatype:avmediatypevideo];
Input
_input = [avcapturedeviceinput deviceinputwithdevice:self. Device Error:nil];
Output
_output = [[Avcapturemetadataoutput alloc] init];
[_output setmetadataobjectsdelegate:self Queue:dispatch_get_main_queue ()];
Session
_session = [[Avcapturesession alloc] init];
[_session Setsessionpreset:avcapturesessionpresethigh];
if ([_session canaddinput:self. Input])
{
[_session addinput:self. Input];
}
if ([_session canaddoutput:self. Output])
{
[_session addoutput:self. Output];
}
Barcode Type Avmetadataobjecttypeqrcode
_output. Metadataobjecttypes = @[Avmetadataobjecttypeqrcode];
Preview
_preview =[avcapturevideopreviewlayer layerwithsession: _session];
_preview. videogravity = Avlayervideogravityresizeaspectfill;
_preview. frame = self. View. Layer. bounds;
[Self. View. Layer Insertsublayer: _preview atindex:0];
Start
[_session startrunning];
Then implement Avcapturemetadataoutputobjectsdelegate
#pragma Mark Avcapturemetadataoutputobjectsdelegate
-(void) Captureoutput: ( Avcaptureoutput *) Captureoutput didoutputmetadataobjects: ( Nsarray *) metadataobjects fromconnection: ( Avcaptureconnection *) connection
{
NSString *stringvalue;
if ([metadataobjects count] > 0)
{
Stop scanning
[_session stoprunning];
Avmetadatamachinereadablecodeobject * MetadataObject = [metadataobjects objectatindex:0];
StringValue = MetadataObject. StringValue;
}
}
At this point you can successfully scan the QR code, but there is an embarrassing problem, then the scan is full-screen scanning.
In general, the scan page in the project is like this, but when you scan you will find that the QR code has not entered the center of the small box, it has been successfully scanned, which is not good for the experience. But since then there is no time to optimize the project. At last, I took out the time today.
I have been working from morning to afternoon, I have tried all the methods I thought of, but none (all tears), and finally will give up the time to find a more suspicious point.
@property (nonatomic) cgrect rectofinterest Ns_available_ios (7 _0);
This is a property of Avcapturemetadataoutput, and its interpretation is
@discussion
The value of this property was a cgrect that determines the receiver's rectangle of interest for each frame of video.
The rectangle's origin is top left and are relative to the coordinate space of the device providing the metadata. Specifying
A rectofinterest may improve detection performance for certain types of metadata. The default value of the
Value CGRectMake (0, 0, 1, 1). Metadata objects whose bounds do no intersect with the rectofinterest won't be returned.
Probably means to set the area of interest for each frame (literally), wouldn't that be to set the scan range.
So hurriedly set the rectofinterest into the frame of the middle frame,
[_output Setrectofinterest:cgrectmake ((ScreenWidth-220)/2, 60 + 64, 220, 220)];
The width and height of the middle area are all screenwidth for the device screen.
But I found out how the scan was not successful. So I looked at the above paragraph again.
The second sentence: The origin of the area in the upper left (behind only know the Pit bitter me!) ), and then the area is relative to the size of the device, the default value is CGRectMake (0, 0, 1, 1), this time I know that there is a proportional relationship, the maximum is 1, that is, just divided by the corresponding device width and height of the size of the line? And then it's changed into
[_output Setrectofinterest:cgrectmake (((ScreenWidth-220)/2)/screenwidth, (+ +)/Screenhigh, 220/screen Width, 220/screenhigh)];
Supposedly this should be perfect, but only to know that I am still happy too early, a scan only to find that it is not so much, a lot worse.
So I was 1.1 points, but finally did not adjust the success, the last cruel have set a very definite value.
[_output setrectofinterest:cgrectmake (0.5, 0.5, 0.5, 0.5)];
This time should be very sure is in the bottom right of the One-fourth area bar, hey.
But the fact that hit me again, the scan found that the lower left One-fourth area, that is, the origin of Rectofinterest is the upper right corner!!!
Looking back again, even if the upper right corner is the origin that should not affect AH, but why not, is not the origin of the X and Y interchange it? Forget it or whatever, give it a try.
[_output Setrectofinterest:cgrectmake ((+)/Screenhigh, ((ScreenWidth-220)/2)/ScreenWidth, 220/screen Width, 220/screenhigh)];
I scanned it again and found it! The original point is correct, I just want to say tmd!
But what about the width and height? No, it's not interchangeable! Give it a try.
[_output Setrectofinterest:cgrectmake ((124)/Screenhigh, ((ScreenWidth-220)/2)/ScreenWidth, 220/screenhigh , 220/screenwidth)];
Reprint http://www.th7.cn/program/ios/201411/323619.shtml
Apple native QR code scanning function--can limit scan area