barcode

is there any free barcode reader sdk for Windows Phone 7?

試著忘記壹切 提交于 2019-12-04 15:14:29
I am developing windows mobile application to scan a product barcode by using in built camera. Can you tell me something about barcode reader sdk which are supporting windows mobile 7? In Windows Phone 7, with the upcoming Mango update, there will be direct access to the camera feed, without having to take a picture of the barcode. Prior to Mango, there is a library that can be downloaded from Codeplex, called ZXIng (Zebra Crossing). http://silverlightzxing.codeplex.com/ Are you developing for Windows Phone, or Windows Mobile? There is no Windows Mobile 7 - with the complete rewrite, the name

Generating/creating a barcode in Android

元气小坏坏 提交于 2019-12-04 14:43:50
Anyone who knows a good way to generate/create a barcode from a String in Android? If you want to encode on the device instead of calling to a URL, indeed you want ZXing . Look at what it does for the Android client Barcode Scanner in EncodeActivity . tbruyelle You can use the Google Charts API, a simple call to the following url with your text in chl parameter returns an image with the QRcode. http://chart.apis.google.com/chart?cht=qr&chs=150x150&chl=give+me+a+beer 来源: https://stackoverflow.com/questions/2370245/generating-creating-a-barcode-in-android

Two way communication with Barcode reader via HID POS

半城伤御伤魂 提交于 2019-12-04 12:54:11
I wish to develop an application which implements two-way communication with a barcode reader where the application sends back an accept/reject signal to the barcode reader to indicate success or failure and the barcode reader interprets with a different beep, red bulb or whatever (depending on the brand). For this reason using the Keyboard Wedge or one-way communication does not suit this scenario (this use case will have people away from the computer with wireless handheld barcode scanners, so they won't be seeing anything on screen). I think that for this scenario I have to use HID POS, but

ZXing Android Generate 1D barcode

本小妞迷上赌 提交于 2019-12-04 10:56:36
问题 I've gone through the examples here regarding encoding barcode: http://code.google.com/p/zxing/source/browse/trunk/androidtest/src/com/google/zxing/client/androidtest/ZXingTestActivity.java But all it generates are QR. I'm looking for 1D barcode generation / encoding . What's the right encode type? Intent intent = new Intent("com.google.zxing.client.android.ENCODE"); intent.setPackage("com.google.zxing.client.android"); intent.putExtra("ENCODE_TYPE", "???"); Barcode Scanner doesn't like

iOS Custom Keyboard - camera not working

南楼画角 提交于 2019-12-04 09:21:48
问题 I want to create a custom keyboard, that acts as a barcode scanner. I already did the whole coding, but the output is not as expected: I am being asked for camera permissions (the first time), but the camera sends no video to the view. I think, that there might be some restrictions using keyboards for safety reasons?!? 1.) Turn on the torch -(void) turnFlashOn { AVCaptureDevice *flashLight = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo]; if([flashLight isTorchAvailable] &&

Unable to read white on black Data Matrix barcode

余生颓废 提交于 2019-12-04 08:24:03
Data Matrix barcode support was added to iOS 8 and I'm able to use it to read Data Matrix barcodes if they are black on white (dark on light). However, it never reads a white on black (light on dark) barcode. Reads this fine: Unable to read this: Per Data Matrix ECC 200, light on dark should be supported. Anyone have an idea how to get iOS 8 to read a light on dark Data Matrix barcode? You can invert the colors of your AVCaptureSession in real time, allowing you to read the Data Matrix code. You can use GPUImage to invert the colors. It's fast and plugs in easily. Just invert and let

ZXing: Finding the bounding rectangle of Barcode

梦想与她 提交于 2019-12-04 07:43:41
I was experimenting with ResultPoints which returns the points related to the barcode in the image. For a QR Code, ResultPoints returns a set of 4 points which are the coordinates of the four boxes at each corner of the QR Code. When I experimented the same with a Barcode, it returns two points which denote the width of the barcode. How do I find the bounding rectangle of the barcode? Is there any way by which I can calculate the coordinates of the top left corner and bottom right corner of the barcode using the ResultPoints array? After a bit of research I found the class

Android barcode scanner integration with web page

大兔子大兔子 提交于 2019-12-04 07:43:04
问题 I have been researching all morning about integrating an android barcode scanner app into a web page, but haven't found exactly what I need to know. I want to have a web page that the user can fill in text fields by using an android barcode scanner. So the user would be on a web page and would either click inside the text field or click a button next to the text field that would start the android barcode scanner. They would then scan the barcode and the text field would be filled in. I have

USB interface barcode scanners

别来无恙 提交于 2019-12-04 04:41:27
Not exactly a programming question, but close. I'll try my luck anyway. The keyboard wedge barcode scanner inserts the translation device between the reader and the keyboard. Data sent through a wedge appears as if it was typed into the computer, while the keyboard itself remains fully functional . Because a computer using a keyboard wedge can't tell the difference between data that is entered by a scanning device, or data that is entered by keyboard typing, a wedge can be used to easily add barcode reading capability to an existing computer without modifying software applications . I'd like

Implement Realtime Barcode Scanner on Windows Phone 8.1 Runtime using ZXing and MFT

↘锁芯ラ 提交于 2019-12-04 04:31:30
I'm working on a Windows Phone 8.1 Runtime shopping application which needs barcode scanner feature. I'm using the ZXing lib, which is fine. My problem isn't about decoding the picture, ZXing does a great job, but to get the Camera Preview realtime, and feed it to ZXing. After a little research I found this forum https://web.archive.org/web/20150328233747/http://developer.nokia.com/community/discussion/showthread.php/247707-Windows-Phone-8-1-Windows-Media-Capture-API-and-Preview-Frames . Can someone give me a working sample of combining an MFT and ZXing? Or how can I get the preview and handle