barcode-scanner

Android Barcode scanner using Zxing

◇◆丶佛笑我妖孽 提交于 2019-12-31 03:04:51
问题 I want to integrate Zxing in a android project (I'm a beginner). I have seen that the way described here http://bit.ly/nBszrL is discouraged and that the best way to do it is through Intents as said in this post http://bit.ly/o29Uma p.s : I don't want the barcode scanner installed on my device I have Included on my project the required class : http://bit.ly/16pKMKx my test code : package com.example.barcodescanner; import android.os.Bundle; import android.app.Activity; import android.content

Barcode Reader for 3G

╄→гoц情女王★ 提交于 2019-12-30 05:22:06
问题 I am newbie to iPhone application. But recently I saw a post asking for Barcode Reader for 3G iPhones. And people(including me) have referred to zxing which works on 3GS or later and if you want to make an appication for 3G then better you buy it from QuickMark or RedLaser to get 3g scanning. So I planned something and need several information from you all There are lots available on appStore. One of them is pic2shop(Which is a free application). But what I want to know is: What exactly is it

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

喜欢而已 提交于 2019-12-30 03:03:59
问题 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

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

限于喜欢 提交于 2019-12-30 03:03:27
问题 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

Send data to a barcode scanner over RS232 serial port

对着背影说爱祢 提交于 2019-12-29 09:00:30
问题 I have a bar-code scanner which is connecting through RS232 serial port. I need to write a program to connect this device with the PC and transmit data. I already wrote some basic methods to initialize a communication link and tried to test by sending a BEEP command to the device but it is not beeping as expected. So I think there is something wrong with my source code. Please somebody help me complete the source code. Below is the written source code 01)DeviceRS232.h #ifndef DEVICERS232_H

Is it possible to read/access the bar-code scanner values using PHP & MySQL?

我怕爱的太早我们不能终老 提交于 2019-12-29 04:56:08
问题 I am trying to enable a PHP website to recognize barcode input. I will load a web page in a browser, the focus (cursor) is set to recieve input into the text box. I will be having a barcode reader/scanner plugged into the PC and will scan the barcodes one-by-one using the scanner. Would the information from the barcode can be put into the text box of the web page ? The important question is that how can I read the output from the scanner using PHP ? Please advise. 回答1: Had a similar problem.

Integrating Zxing Barcode scanner to my android app

眉间皱痕 提交于 2019-12-25 07:26:52
问题 I'm trying to integrate barcode scanner in my android app. These are the things i have done: 1) i added core-3.2.1 module to my project. 2) added an activity <uses-permission android:name="android.permission.CAMERA" /> <activity android:name="com.google.zxing.client.android.CaptureActivity" android:screenOrientation="landscape" > </activity> I'm getting that Cannot resolve symbol 'CaptureActivity'. What should i do more? I have checked other stackoverflow posts but i'm unable to fix this. 回答1

How to make the ZXing scan using the front camera not the back camera in Android?

落花浮王杯 提交于 2019-12-25 07:17:59
问题 I am using the ZXing by the following code ContinuousCaptureActivity, and the zxing using (by default) the back camera to scan, how to make it scan using the front camera ? 回答1: set extra SCAN_CAMERA_ID to the ID of the camera you want usually 1 for the front one. for example intent.putExtra("SCAN_CAMERA_ID", 1); 来源: https://stackoverflow.com/questions/40141833/how-to-make-the-zxing-scan-using-the-front-camera-not-the-back-camera-in-android

AVFoundation isn’t reading a specific type of barcode

喜你入骨 提交于 2019-12-25 03:27:21
问题 I’m building an app for paying parking tickets. The problem is that we have a specific type of barcode that AVFoundation can’t read. I tried to found other frameworks to replace the AVFoundation, but turns out all of them use AVFoundation underneath. The only framework I found capable of reading it is the ZBar, but we’re not planning to use it since it hasn’t been updated for 6 years. Do you guys have any idea why it isn’t working? Image link https://i.stack.imgur.com/AEU0H.jpg Thank you.

Python barcode scanner serial trigger

為{幸葍}努か 提交于 2019-12-25 02:18:32
问题 I'm messing around with a Honeywell 4600 barcode scanner in python, configured as a serial device. All is well and I can read barcodes with it, but I would like to test the serial trigger option instead of pressing the trigger all the time. The manual is very brief on this feature and only states "SYN T CR" has to be written to the device to activate the serial trigger ser.write('SYN T CR') does not seem to do much. Can someone point me in the right direction? Thank you! 回答1: This happens