barcode

Scanning Barcodes (ZXing) in a own Thread and displaying a ProgessDialog

风格不统一 提交于 2019-12-08 06:32:01
问题 since I know this side most of my questions have been answered be using the search. But this seems to be a special one. I am new to Google Android development, so I want to learn by doing. I want to create an app, that scans barcodes and displays a list of possible products. I am using ZXing (got this from here! ;)) to scan the barcdes. Works perfect. I'm quering the google shopping api with the scanned barcode and get parse the rss feed, since there is a result (but in most cases there is ^^

How to fill-in two input[text] in an HTML form using a barcode reader?

六眼飞鱼酱① 提交于 2019-12-08 06:17:35
问题 I have a web page with one input text for the barcode content and a select for the barcode type. So using the database, it is possible to generate the barcode in the good format. A normal final user don't know which barcode as which type, but the barcode reader knows and can send this type as a keyboard input. The problem is that I don't know how to change from the input to the select. If I use, the \t , it prints a tabulation in the input instead of switching from a input to the other. If I

CoreScanner (Motorola) Events not being triggered C#

孤者浪人 提交于 2019-12-08 05:06:56
问题 I am attempting to a simple windows form application, where the users scans a barcode then the application decodes the barcode, then inserts an row into a database. A basic track application. I picked up a Motorola scanner and downloaded the SDK for windows development. I read though "APPENDIX A WRITE SIMPLE APPLICATIONS USING THE SCANNER SDK API" seemed like a good place to start in the Developers guide (http://support.symbol.com/support/search.do?cmd=displayKC&docType=kc&externalId

C# + USB Barcode Reader

社会主义新天地 提交于 2019-12-08 02:50:55
问题 How can i read barcode text in background in my C# app? I googled but its of no use. And other resources on stackoverflow are not close to what i need. I want to read barcode in background. And i want to know if the data is coming from barcode or key board. If the data comes from the barcode then it mustnot be displayed on textbox even though the textbox is highlighted. I got similar code for stackoverflow but if there is presence of textbox in the window then the textbox will contain barcode

Scanning a barcode with an ASCII control character into an input field

泄露秘密 提交于 2019-12-08 01:36:42
问题 I need to scan a barcode with ASCII 29 (group separator) into an HTML input field, and replace all the group separators with |. The following JavaScript function works when I first scan the barcode into Notepad++ and then copy it to the input field, but not when the barcode is scanned directly into the input field. What's the problem? var barcode = document.getElementById('barcode').value; barcode = barcode.replace(new RegExp(String.fromCharCode(29), 'g'), '|'); alert(barcode); 回答1: On my

Scanning barcode with AVCaptureMetadataOutput and AVFoundation

喜夏-厌秋 提交于 2019-12-08 01:32:48
问题 I am using AVFoundation and AVCaptureMetadataOutput to scan a QR barcode in iOS7, I present a view controller which allows the user to scan a barcode. It is working fine, ie. a barcode is being scanned and I can output the barcode string to console. But it keeps scanning over and over again, see screen shot. What I want it to do is scan the barcode just the once and then dismissViewController. Here is my code for the delegate method: - (void)captureOutput:(AVCaptureOutput *)captureOutput

Efficient compression and representation of key value pairs to be read from 1D barcodes

折月煮酒 提交于 2019-12-08 00:58:56
问题 I'm currently writing an application for Windows Mobile which needs to be able to pick up key value pairs from 1D barcodes (configuration settings). The less barcodes need to be scanned, the better. Sample input: ------------------------------ | Key | Value | ------------------------------ | 12 | Söme UTF-8 Strîng | | 9 | & another string | ------------------------------ I thought of the following algorithm: 1. Concat the key value pairs and encode the values with Base64 So we would get

Barcode generation usingBarcode Rendering Framework in web application

允我心安 提交于 2019-12-07 16:24:57
问题 I am using Barcode Rendering Framework for generating a barcode. I have downloaded their dll's. I can see,how it can be done in windows application. I want to do the same i.e, generating the barcode and using it in web application. Following is the link for the question that can be used. Free Barcode API for .NET and following is the code : Code39BarcodeDraw barcode39 = BarcodeDrawFactory.Code39WithoutChecksum; System.Drawing.Image img = barcode39.Draw("Hello World", 40); pictureBox1.Image =

Zxing library cannot be resolved

十年热恋 提交于 2019-12-07 16:06:48
问题 I am developing app with zxing library. I imported the zxing project into my work place. When i importing there were some problems i faced. Compile the project by java 1.7 . I done it. CameraConfigurationUtils was missing. I copied from the library source . Resource id's cannot be used to check in the switch case . I changed it to if else . But finally there is a broblem in the 1. emailResult.getTos() was not resolved in EmailAddressResultHandler 2. Then i built the project there comes the

Does CIDetector For other Barcode Types

匆匆过客 提交于 2019-12-07 12:10:27
问题 I am looking at CIDetectorTypeQRCode. How can I detect other types of barcodes? I can read other barcode types via AVMetadataObjectType, however I want to do the same with CIDetector. I am trying to achieve real time highlighting of the barcode. Trying for a sort of zoom in effect before my AVCaptureMetadataOutputObjectsDelegate achieves a full lock and read of the code. 回答1: CIDetector has only following types to detect, So we can't use it to detect another type of barcodes.