barcode-scanner

Suitable api to get product details from scanned barcode iphone app?

☆樱花仙子☆ 提交于 2019-11-30 15:21:00
Am developing sample barcode scanner app. I using ZBar API to scan the barcode from the product. It is working very fine. Now, looking to get the product of the scanned barcode. I want to get the below details of the product from the api, Product Name Product Price Selling fees (eBay or Amazon fees) Shipping costs Shipping dimensions Shipping weights I am searched and continuing to get the exact result for the question in google. But, not yet get it right now. Can anyone please suggest your ideas on this? Can you please suggest Amazon API to get product details by using the barcode? Thanks in

Enhanced iOS barcode scanner library?

江枫思渺然 提交于 2019-11-30 11:24:43
问题 We're creating an iOS app that basically scans badges at events and collects contact info. We're looking for an iOS library that can read not only the number of the barcode, but also any additional information that's included (contact info). Does anyone have any library suggestions or will this have to be a custom library? Thanks in advance! 回答1: Updated: Use AVCaptureMetaDataOutput in AVFoundation which works with minimum deployment target iOS 7. Previous Answer: Have been using ZBar SDK in

Scan barcode into a specific textbox

▼魔方 西西 提交于 2019-11-30 08:59:20
I am working on bar-code scanners. The bar-code scanner that I am using is a plug-n-play type and scans the code automatically wherever you place the cursor. But what i want is that whether i can scan it to a specific text-box on a web page everytime my scanner reads a code For eg, if my form looks like this <input type="text" name="txtItem" id="txtItem" class="m-wrap w-120" tabindex="6"> <input type="text" name="itemId" id="itemId" class="m-wrap w-120" tabindex="6"> <input type="text" name="itemName" id="itemName" class="m-wrap w-120" tabindex="6"> <input type="text" name="itemQty" id=

With Zxing retiring for iOS, which barcode-scanner to switch to?

我的梦境 提交于 2019-11-30 08:45:55
I have implemented ZXing to my iOS-app, however I am questioning it's maintainability as not long ago it was announced that ZXing to iOS is retiring: Retiring C++, Objective C code I've also read that there might be compatibility issues with the newer phones iPhone 5S.. Also running Xcode's static code analysis on the Zxing-library reveals memory errors, I'm not sure if these errors are false positive or not, but they make me doubt Zxing even more. Further, the performance of Zxing compared to other barcode scanners feels subpar. So my question is, what is the best alternative? I hear a lot of

android: zxing barcode scan successful but not returning from activity

廉价感情. 提交于 2019-11-30 08:06:03
问题 I am successfully using zxing to scan codes, by calling the installed barcode reader's intent, but when it beeps and indicates a good scan I expect the zxing activity would return control so I can process the result, but it sits there and tries to scan again. I have to press the back button and then it returns and I can do the next step. Is there some obvious flag I'm missing when I call the scanner? Any advice gratefully received. Many thanks. Here's my code: public boolean onTouchEvent

Default keyboard is not coming when Barcode Scanner Device is Connected by Bluetooth in IOS

China☆狼群 提交于 2019-11-30 08:02:13
问题 I am facing issue with keyboard when barcode scanner device is connected using bluetooth. Flow: 1) I have turned on Bluetooth, and connected barcode scanner device using bluetooth by entering displayed code in it to connect. 2) I am able to use scanner, but the default keyboard is not displaying even we call becomeFirstResponder. 3) When I disconnect the scanner device or turn off bluetooth connectivity then the keyboard is coming. Note : Below is the link for the Barcode Scanner device i am

jQuery: Listening for automated scanner input from keyboard?

偶尔善良 提交于 2019-11-30 05:25:32
I'm writing a web app for a library system with a barcode scanner attached. The scanner's input presents as keyboard input, and it's always of the form ~~[\d]+.[\d]+~~ , for example ~~470.002~~ . I want to set up a jQuery listener for scanner input, and am a jQuery novice. It should listen to all keyboard input, but only perform an action when it hears input from the scanner, and only when the scanner input has finished. This is as far as I've got (i.e. not very): //Global functions: call on all pages. $(document).ready(function() { // Listen for scanner input. $(window).keypress(function(e) {

How to read barcodes using Android Phonegap?

旧街凉风 提交于 2019-11-30 04:12:05
I want to scan barcodes using Android Phonegap. How can I do this ? Check out the PhoneGap barcode tutorial here . It will take you step by step to creating a sample app with zxing via the PhoneGap plugin from purplecabbage . You would have to build a Phonegap plugin which implements the zxing library . Or use the pre existing BarcodeScanner plugin which is MUCH easier. 来源: https://stackoverflow.com/questions/5840996/how-to-read-barcodes-using-android-phonegap

Enhanced iOS barcode scanner library?

徘徊边缘 提交于 2019-11-30 00:10:00
We're creating an iOS app that basically scans badges at events and collects contact info. We're looking for an iOS library that can read not only the number of the barcode, but also any additional information that's included (contact info). Does anyone have any library suggestions or will this have to be a custom library? Thanks in advance! Updated: Use AVCaptureMetaDataOutput in AVFoundation which works with minimum deployment target iOS 7. Previous Answer: Have been using ZBar SDK in most of our projects. Picks up barcode and scans very fast, easy to customize focus area from SDK. Tested on

problem with barcode scanner reading value into text box

给你一囗甜甜゛ 提交于 2019-11-30 00:03:01
问题 I have a barcode scanner which reads the string of the barcode and displays in the active text box. The issue I am having, is that I need that barcode to be used as soon as its scanned (no user "ok" button). When I do the Text Changed event, it fires as soon as the first character of the barcode is entered into the text box. (i.e if the barcode is 123r54122, it fires with '1' in the text box). There is no consistent end character to the barcode, or standard length. So how would I go about