barcode

React-native-camera limit barcode scan area

一世执手 提交于 2019-12-04 04:25:52
问题 I am using the barcode scanner from react-native-camera and currently if I use it and there are multiple QR-codes closely on top of each other, I point my camera at one and it reads the code above it which is outside of the display on screen but within the cameras view. If however there is no QR-code above the one I want to scan, then it scans the correct one, so it seems like it always scans the top QR-code within the cameras view. Here's my question: Is there a way to limit the "scan area"

Barcode field length

孤人 提交于 2019-12-04 03:52:10
I'm writing some attendance software. Each member will have an ID card with a barcode which they will use to sign in to events. How long should the barcode field be in my database? I'd like to accept Code 39 and Code 128 barcodes. I know these are variable length codes, so what should I set the max length to? Thanks! EDIT: My clients will be using a variety of third-party barcode printing tools. Code 128 can do 128 ASCII characters so set the max length to 128 (or higher, it doesn't really matter). Let me clarify that last statement. Variable text fields will use 1 byte per character (or more

iPhone simple commercial barcode reader via camera [duplicate]

此生再无相见时 提交于 2019-12-03 22:45:57
This question already has answers here : Closed 7 years ago . Possible Duplicate: Is there a barcode recognition framework for iOS? I've done some iPhone programming (safely midlevel) and now a requirement has come up for us to write a barcode reader that uses the iPhone camera. This is not for shopping or the general public but will be for internal use. My first thought was to simply programatically take a picture, upload it to server, and have a web service or something similar handle the heavy lifting of extracting the numbers out of the bar code. However I recently installed some apps

CodeIgniter 2 + Zend 2 library barcode

点点圈 提交于 2019-12-03 21:26:35
Problem: rendering barcodes in CodeIgniter via Zend library barcode. I googled, and also tried all tutorials on first 2 pages. I stackoverflowed and found quiet a few topics on my problem, even few are marked as answered but no luck. Finally I tried this https://stackoverflow.com/a/15480779/1564365 but yet another error message. error: Fatal error: Class 'Zend\Barcode\ObjectPluginManager' not found that means it is actually loading Barcode library but with error. sidenote : ZF 2.2 fresh download (today), CI 2.1.3 fresh download (today) To solve this, I am forced to use ZF1. step by step:

USB Barcode Scanner and WM_KEYDOWN

扶醉桌前 提交于 2019-12-03 20:29:11
I am trying to write a program that can will read a barcode scanner. In addition, I need it to read the input even when the application is not the window in focus (i.e., running in system tray, etc). I found this article, titled Distinguishing Barcode Scanners from the Keyboard in WinForms , that seems to solve the exact problem. It is working pretty good, it detects my device and handles the WM_INPUT message. However, it is checking to see if the RAWINPUT.keyboard.Message is WM_KEYDOWN (0x100). It never seems to receive this. The only line of code I've altered in the code provided in the

Generating 2D (PDF417 or QR) barcodes using Excel VBA

我们两清 提交于 2019-12-03 19:08:59
问题 I would like to generate a 2d barcode (PDF417 or QR codes) in an Excel cell using macros. Just wondering is there any free alternatives to paid libraries to do this? I know certain tools can do the job but it is relatively expensive to us. 回答1: The VBA module barcode-vba-macro-only (mentioned by Sébastien Ferry in the comments) is a pure VBA 1D/2D code generator created by Jiri Gabriel under MIT License in 2013. The code isn't completely simple to understand, but many comments have been

How to read barcodes with the camera on Android?

江枫思渺然 提交于 2019-12-03 17:54:03
问题 I want my application to recognize barcodes taken by camera. Is it possible using Android SDK? Something like this: Barcode Scanner 回答1: It's not built into the SDK, but you can use the Zxing library. It's free, open source, and Apache-licensed. The 2016 recommendation is to use the Barcode API, which also works offline. 回答2: 2016 update With the latest release of Google Play Services, v7.8, you have access to the new Mobile Vision API. That's probably the most convenient way to implement

image to barcode recognition [closed]

…衆ロ難τιáo~ 提交于 2019-12-03 16:50:36
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I know this has been discussed a few times on stackoverflow but I wasn't able to find a sufficient answer. For a project, I am seeking the best possible piece of software/api/library that can recognise barcode numbers from the input image. It will be used on mobile phones(iphone, windows mobile, android etc.) so it should be good at catching barcodes from bad angles, blurry images and such bad

How to print (barcode) labels from a Ruby on Rails Application?

北城以北 提交于 2019-12-03 16:24:55
My first application I have developed in RoR is for some Kiosk Touchscreen PCs used in our stock. When the stock worker picked up some material he enters the quantity in a Form. Now I want to print a label containing: customer name, material description, quantity, and a barcode on our Zebra printer. How would I do that from a Ruby on Rails Application ? Sending directly the control chars needed for ZPL (Zebra Printer Language) from the controller ? ( not very comfortable ) Create a view in HTML send it to the client, and the client has to print it. ( not very confortable and error prone, as

How to use barcode Scanner in web Application

喜夏-厌秋 提交于 2019-12-03 16:14:45
I would like to use barcode scanner in my Laravel application. This is an online Point of Sale Application. I know that barcode scanner returns just a string and press Enter Button. But to capture this string I need to use a form and select the input field as well. If I dont select the input field it cann't capture the data. What I want is to work the barcode scanner without selecting the form. Is it possible anyway ? Yes, there are two ways: The autofocus attribute <input id="barcodeInput" type="text" autofocus> You can use the autofocus attribute, but this may not be supported by any browser