I'm currently in the final stages of of completing a barcode scanning app which takes use of the RedLaser API. There is one challenge though in that I'm not able to set the region within the image for where it should identify barcodes. It identifies the barcode from the complete image and not the ActiveRegion I set.
I don't have the exact code infront of me but it's practically a carbon copy of this source:
(void) setPortraitLayout
{
// Set portrait
self.parentPicker.orientation = UIImageOrientationUp;
// Set the active scanning region for portrait mode
[self.parentPicker setActiveRegion:CGRectMake(0, 100, 320, 250)];
// Animate the UI changes
CGAffineTransform transform = CGAffineTransformMakeRotation(0);
[UIView beginAnimations:@"rotateToPortrait" context:nil]; // Tell UIView we're ready to start animations.
[UIView setAnimationDelegate:self];
[UIView setAnimationCurve: UIViewAnimationCurveLinear ];
[UIView setAnimationDuration: 0.5];
redlaserLogo.transform = transform;
//A visible frame to aim with
[self setActiveRegionFrame];
[UIView commitAnimations]; // Animate!
}
(void) setActiveRegionFrame
{
//this just draws up a visible rectangle slightly smaller than supposed ActiveRegion
[_rectLayer setFrame:CGRectMake(self.parentPicker.activeRegion.origin.x - 50, self.parentPicker.activeRegion.origin.y - 50, self.parentPicker.activeRegion.size.width - 50, self.parentPicker.activeRegion.size.height - 50)];
CGPathRef path = [self newRectPathInRect:_rectLayer.bounds];
[_rectLayer setPath:path];
CGPathRelease(path);
[_rectLayer needsLayout];
}
Anyone have any experience setting up RedLaser with a manual ActiveRegion? I am using the 3.1.0 iPhone library (also tried with the latest, 3.2.4, in case a bug was present earlier).