0
votes
1answer
47 views

Scandit SDK in landscape

I am trying to implement the Scandit SDK in my iPad application. I have some problem with the orientation though. I only support landscape and I get the following error: Supported orientations has ...
0
votes
0answers
60 views

Delegates with Multiple Views concerning Linea Pro Barcode Scanner

I am working on a project with the Linea Pro Hardware Barcode scanner. For getting started I used the following answer How do I use the Linea-Pro SDK for IOS? My App consists of a Navigation ...
0
votes
0answers
101 views

Scanner interface available other than using Linea Pro SDK (Objective-C)?

I have a iOS 6 app (iPod Touch) developed with MOTOROLA RhoElements (formerly called RhoMobile), in which I plan to add the barcode scanning feature. RhoElements is coded in Ruby+HTML+JS. How do I ...
0
votes
0answers
94 views

How to get UPC-E barcode image in objective c

I am developing application of barcode scanning using Scandit sdk. I am having no problem in scanning any type of barcode. I have been successful in getting barcode number. I am displaying image of ...
0
votes
1answer
38 views

Opticon F31 can't enter VCP/Serial mode

I've just purchased an Opticon F31 2D barcode scanner for use in a cocoa mac application as a USB Serial device. We've used the NLV 2101 and scanned the C01 barcode from the universal manual which ...
0
votes
1answer
425 views

scan barcode(generated using ZBar SDK) using iPhone simulator?

I want to test my barcode scanner using iPhone Camera. I'm using ZBar SDK for my barcode scanning. I have a scan button for this.When I click on Scan button,its showing me the message,"Camera ...
0
votes
1answer
224 views

Linea pro device detection

In my application i need to scan the bar code. for that i am using Linea pro bar code scanning device attached with my iPhone. i need to know the presence of device through code. is it possible? I am ...
0
votes
0answers
86 views

Is there any framework that supports scanning ITF-14 barcodes reader on iOS?

In my project I have to scan an ITF-14 barcode to obtain its data. I have tried both the ZBar framework and Zebra Crossing sample but neither can handle ITF-14 barcodes. Is there another framework or ...
1
vote
3answers
2k views

Use camera scan QRCode or BarCode in ObjectiveC

I want to build an app to scan QRCode and Barcode. I want to use camera scan image contains the code (QRCode or BarCode) but not take photo. Now I have no idea to do it. Anyone, give some references, ...
2
votes
2answers
435 views

Barcode Reader using scandit sdk

I am using Scandit SDk for barcode scanning.I am also following all the instructions run the demo "Project" which given by "Scandit" but, it is crash on click the any button. Is this any iOS problem? ...
0
votes
1answer
1k views

ZBarReaderViewController, view controllers hierarchy and others

I am facing this unsolvable problem and would be happy to get your help with it. I have an iphone app that uses the ZBar barcode scanner. I have a main viewcontroller that calls the ZBar scanner ...
1
vote
2answers
499 views

How to return from webview to rootview in iOS?

I am new to iOS and Objective C programming world. I am trying to create a App which will scan the barcode then use that data to go to a website. Now, the only issue is when I load the website using ...
0
votes
1answer
247 views

RedLaser SetActiveRegion iPhone

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 ...
3
votes
1answer
1k views

How to use front camera for barcode scanning in ipod

I am using back camera to read bar code data...and it is scanning perfectly.Now I want to use front camera for this...How can I do this? Where should I make change?I have used ZBar bar code reader my ...
0
votes
1answer
400 views

Library for scanning barcodes with iPad 2 front camera?

Which libraries are available for scanning barcodes with the iPad 2 front camera - not the back camera? The library in the best case features image processing functionality to make up for the missing ...
-3
votes
4answers
5k views

How can I use barcode reader in iPhone (iOS 5)? [duplicate]

Possible Duplicate: Is there a barcode recognition framework for iOS? I have a project on iPhone using iOS 5. I have to make an attandance system using bar code scanning and the bar code ...
-2
votes
2answers
94 views

For webSearch in objective c?

I want to Search bar code number in Google as well as other website that client need from my application. please give me the suggestion Thanks in Advance
0
votes
1answer
333 views

Zbar Scanner symbol.data comparison iPhone Scanner

Current Code Explanation: The iPhone application incorporates the ZBar SDK to scan a bar code. The first bar code is returned and I send symbol.data (the barcode info) to updateTotal. In updateTotal, ...
0
votes
1answer
518 views

how to make ZBarReaderViewController fullScreen

I want to make my ZBarReaderViewController full screen. I use this code: _reader = [ZBarReaderViewController new]; _reader.readerDelegate = self; _reader.videoQuality = ...
4
votes
1answer
2k views

How do I use the scanCrop property of a ZBar reader?

I am using the ZBar SDK for iPhone in order to scan a barcode. I want the reader to scan only a specific rectangle instead of the whole view, for doing that it is needed to set the scanCrop property ...
4
votes
5answers
3k views

How Do I Change The Frame Of A ZBar Reader?

Ok, so I'm using the ZBar SDK to scan barcodes in my iPhone app. I've successfully implemented the sample code, but now I want to change the frame of the scanner view (i.e: To half the screen size). ...