barcode

Android. Howto read Aztec Codes from within my App? [closed]

ぐ巨炮叔叔 提交于 2019-12-05 08:57:41
I would like to embed an Aztec Code reader into my app. I need control over the GUI to place some buttons around the camera view, while reading the code to be able to switch the camera on / off (to save the battery) What I found was ZXing - which is not reliable yet. Apps with an own SDK like neoreader , which do not give me the control over my GUI. Is there a solution for that problem? Maybe som libs? Proprietary libs? I found a proprietary lib from manateeworks.com They do offer a lib, which can be used to decode Aztec Codes In case anyone is looking for a more up-to-date answer to this

USB Barcode Scanner and WM_KEYDOWN

一曲冷凌霜 提交于 2019-12-05 07:54:23
问题 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

CodeIgniter 2 + Zend 2 library barcode

自古美人都是妖i 提交于 2019-12-05 07:08:41
问题 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

AVCaptureSession barcode scan

送分小仙女□ 提交于 2019-12-05 07:06:57
I'm currently working with AVCaptureSession and AVCaptureMetadataOutput . It works perfectly, but I just want to know how to indicate to scan and analyze metadata objects only on a specific region of the AVCaptureVideoPreviewLayer ? Here is a sample of code from a project I have that may help you on the right track // where 'self.session' is previously setup AVCaptureSession // setup metadata capture AVCaptureMetadataOutput *metadataOutput = [[AVCaptureMetadataOutput alloc] init]; [self.session addOutput:metadataOutput]; [metadataOutput setMetadataObjectsDelegate:self queue:dispatch_get_main

Read/decode bar codes from an image in php

大兔子大兔子 提交于 2019-12-05 05:35:44
I am look at building a 13 digit EAN bar code scanner which works on the web on mobile devices and will use the devices camera to take an image of bar code to scan and decode. I'm not trying to do this through a native app as I would prefer to make this part of my native website search experience. E.g. website visitors on a mobile will be prompted to scan a bar code without having to open an app. This script works well on desktop https://github.com/EddieLa/JOB and uses the Navigator.getUserMedia property to do all this in JavaScript however support in Android is only just starting and support

DataMatrix-encoding with zxing only generates 14px bitmap

狂风中的少年 提交于 2019-12-05 05:09:14
I'm using zxing to generate barcodes with different types (EAN, 2of5 and DataMatrix). Generating in general works fine. The only problem I currently have is that zxing only generates a 14x14 pixel bitmap which is way too small. But only when using DataMatrix! EAN13, 2of5/ITF and QR-Codes work perfect with the same code. My code: BitMatrix bitMatrix = new DataMatrixWriter().encode(message, BarcodeFormat.DATA_MATRIX, 1080, 1080, null); int height = bitMatrix.getHeight(); //height is always 14, it doesn't matter what value I pass to the encoder As you can imagine this looks pretty shitty on a

image to barcode recognition [closed]

旧巷老猫 提交于 2019-12-05 03:11:57
问题 Closed. This question is off-topic. It is not currently accepting answers. 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

ZXing on Android PDF417

断了今生、忘了曾经 提交于 2019-12-05 02:51:26
Was anybody able to read the PDF417 barcode with use of the ZXing library on the Android OS? They are supporting this - and according to their page it is in 'alpha' stage. We are not looking for perfect solution - since the PDF417 is pretty complex and needs a very good camera with auto-focus, we can accept that it will be working only on few pre-selected high end devices. We have tried also the Barcode Scanner + available on the Android Market - it has the PDF417 option in the settings, but whatever we read it always fails. We were looking also for commercial SDK, also here on stackoverflow,

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

余生颓废 提交于 2019-12-05 01:55:57
问题 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

QR codes Limits

戏子无情 提交于 2019-12-05 01:28:53
I have to generate codes with custom fields: id of field+name of field+values of the field. How long is the data I can encode inside the QRcode? I need to know how many fields\values I can insert. Should I use XML or JSON or CSV? What is most generic and efficient? XML / JSON will not qualify for a QR code's alphanumeric mode since it will include lower-case letters. You'll have to use byte mode. The max is 2,953 characters. But, the practical limit is far less -- perhaps a few hundred characters. It is far better to encode a hyperlink to data if you can. As Terence says, no reader will do