Tagged Questions

ZXing (pronounced "zebra crossing") is an open-source, multi-format 1D/2D barcode image processing library implemented in Java, with ports to other languages. Its focus is on using the built-in camera on mobile phones to scan and decode barcodes on the device, without communicating with a server, though the library also supports use on a server.

learn more… | top users | synonyms

39
votes
4answers
46k views

Using ZXing to create an android barcode scanning app

I've been searching on how to add a barcode scanner to my app. Does anybody know of any examples or know how to do this easily? Any help is greatly appreciated.
15
votes
4answers
10k views

Integration ZXing library directly into my Android application

I'm writing this in mere desperation :) I've been assigned to make a standalone barcode scanner (as a proof of concept) to an Android 1.6 phone. For this i've discovered the ZXing library. I've ...
11
votes
4answers
413 views

google.zxing barcode generator in iReport

I want put a barcode in my page and can preview it. The barcode generator is google.zxing and my reporting tool is iReport. But i dont know, how to configure Image Expression and Expression Class of ...
11
votes
5answers
15k views

QR Code encoding and decoding using zxing

Okay, so I'm going to take the off chance that someone here has used zxing before. I'm developing a Java application, and one of the things it needs to do is encode a byte array of data into a QR Code ...
10
votes
1answer
3k views

PhoneGap and Zxing QrCode - building issues

I currently encounter a problem with installing ZXingWidget for a PhoneGap project. I followed both "PhoneGap Plugins" and ZXingWidget installation guides, but my project building fails. Most of my ...
9
votes
2answers
10k views

Embed Zxing library without using Barcode Scanner app

What is the preferred way to embed the zxing library to provide scanning without having the Barcode Scanner app installed? I am looking to embed it in android without having to prompt the user for any ...
5
votes
2answers
500 views

Encode contact info (MeCard) on Android using ZXing

I need to create QR code from contact info which is in MeCard format. I need to encode the following field: Name (N:) Url (URL:) Note (NOTE:) I can correctly create all 3 fields using ZXing QR ...
5
votes
1answer
848 views

Add zxing to XCode 4

I am adding zxing to my project. I first copied the iphone folder to my project directory. Then copied the cpp folder to my project directory. Dragged the ZXingWidget.xcodeproj into XCode. Added ...
5
votes
1answer
1k views

Yet another question about embedding ZXing in android app

so im another unlucky android development beginner who needs to have ZXing barcode scanner embedded in his app. There is plenty of questions asking how to do this here on stackoverflow but none of ...
5
votes
3answers
2k views

QR code reader for iPhone

I want to create QR code reader based application. Using which library, I can create my application ? Note: I searched in google. Always I am getting zxing. I downloaded the zxing project. But the ...
5
votes
1answer
2k views

QR code scanner

I would like to create a QR code scanner in my app. I went through the zxing ,but I could not understand it. I am interested in QR codes only. All help is highly appreciated.
5
votes
1answer
840 views

Zxing - Changing camera view -90 degrees

First of all, I would like to refer to this Issue on the google groups. My problem is i want the landscape-native app to work in portrait mode. The way of getting the app into portrait mode is no ...
4
votes
3answers
232 views

looking for best barcode scanner library, besides zxing

I am looking for some best barcode libraries on all platforms. I know zxing but wondering more libraries besides it. Any help is appreciated~
4
votes
1answer
2k views

phonegap / iphone / zxing

I need to add Zxing (a qrcode reader app) to my iphone app, made in html, css & js, phonagap compiled. I have the zxing app on a side & my app (phonegap based) on the other side. If someone ...
4
votes
3answers
773 views

Possible to use zxing in Silverlight (for windows phone)

is it possible to use the c# port of zxing in a Windows Phone 7 project? I've tried a couple of things but zxing makes use of System.Drawing.Bitmap while that doesn't exist in Silverlight.
4
votes
1answer
6k views

how to include ZXing in iphone project

I have downloaded ZXing 1.5 and am trying to include this in my iPhone project. I have got the Barcode iphone project provided by Zxing to build on its own (And i can offer advice n this if any one ...
4
votes
3answers
5k views

Android - Barcode Scanning, Options? Zxing?

I want to create an application for Android that will be able to scan barcodes, get the information contained within the barcode and then be able to use that information in some way. I have no idea ...
3
votes
4answers
52 views

Getting Camera error in Zxing Barcode Application

I am trying to use Zxing Library for developing a barcode scanner. My activity is as follows: public class Scanner extends Activity { private static final String PACKAGE = "com.test.scan"; ...
3
votes
4answers
122 views

My java if statement doesn't seem to be working

I'm not sure why but when I use zxing in my android application to get a barcode the format returns as EAN_13 but my if staement decides it's not, then shows me EAN_13 in my toast notification. Any ...
3
votes
1answer
410 views

zxing: sample code to detect QRCode in an image

I use this code in C# to decode (not detect) a QRCode and it works: LuminanceSource ls = new RGBLuminanceSource(image, image.Width, image.Height); Result result = new QRCodeReader().decode(new ...
3
votes
2answers
145 views

Issue in using Zxing via intent if google goggles is installed

I am using following code to invoke Barcode scanner apps from Zing public Button.OnClickListener mScan = new Button.OnClickListener() { public void onClick(View v) { Intent intent = new ...
3
votes
2answers
154 views

Objective-C : is it possible to detect QR code data type?

I did qr code with Zxing, Right now I can read data but what I want is : Example: Be able read type of QR Code is wifi, VCard, Calendar, url, etc... if detect QR Code is wifi so I be able code to ...
3
votes
1answer
272 views

ZXing Library running perfectly fine in iOS 4.3, generates errors in iOS 5

I have integrated the Zxing Library for QRCode Reader in one of my iPhone app. It was running fine when I was using iOS 4.3 SDK. But after I have installed iOS 5 SDK and Mac OS Lion on my Mac, it ...
3
votes
1answer
204 views

Rectangle used in ZXING Library for scanning QR code is not centerd

I have requirement in which I need to scan the QR code using ZXING library in Android application. I have added complete ZXING code in my project and written following code for opening camera for QR ...
3
votes
1answer
534 views

Get ZXing Reader to decode a bitmap

I haven't yet been able to decode a QR code with ZXing. I'm using a BUG from buglabs.net but the problem doesn't seem to have anything to do with the hardware, but rather the format of the image. ...
3
votes
3answers
639 views

Create png image from QRCode for iPhone

I've been using zxing to decode QRCodes. I've also now the got the encoder working and can create the QRCode which contains the encoded data. I'm asking if anyone knows how to convert this QRCOde ...
3
votes
2answers
439 views

Barcode Scanning is there API for getting product details etc? [closed]

I am in java Android ZXing library, and I wanted to get product details on that. Where can I go with API to get product details. Thanks
3
votes
3answers
1k views

xcode4 “dyld: Symbol not found: _OBJC_CLASS_$_AVCaptureDevice” error

my iphone app runs in IOS 4.3 simulator but not any other IOS 4.0+ simulator. Even though, it shall run there. I got the following errors - GNU gdb 6.3.50-20050815 (Apple version gdb-1518) (Sat ...
3
votes
0answers
172 views

Compiling Zxing library to .a file and include in project

Is it possible to compile Zxing iphone library to .a extension and add them to project? Basically I am looking at changing the CPP and moving them inside my project folder rather than placing them ...
3
votes
2answers
269 views

NetBeans third party javadoc adding problem

I'm trying to add zxing java doc. I've tried different approaches: 1) Java Platforms > Javadoc, rather than Tools > Libraries > Javadoc 2) * Go to Project Properties > Libraries dialog * On ...
3
votes
1answer
279 views

How to obtain scanned barcode type with zxing library?

How i can obtain bar code type with zxing library? Delegate method return only barcode in text.
3
votes
1answer
1k views

Zxing on iphone: how can i scan qrcode without include zxing widget in my application?

I'm trying to build an augmented reality application for iphone. I need to scan qrcode but i don't want to add the zxing widget. Any idea? Thanks :)
2
votes
1answer
74 views

ZBar vs. zxing - QR recognition comparison

Can anyone tell which library is better in small QR Codes recognition under low lighting conditions? Platform is iPhone 4/iOS 5 I tried both Barcodes (zxing) and the ZBar apps and it seems that zxing ...
2
votes
1answer
49 views

scan ean13 with iphone / android

I've already used zxing in the past to scan qr-codes with Android and iPhone devices. These apps were made with PhoneGap and a Zxing plugin for PhoneGap. As far as i know, only a QR-decoder is ...
2
votes
1answer
85 views

Using Phonegap Barcode Scanner on Iphone

I'm trying to add a barcode scanner to a JQM phonegap project for iOS. I have followed the instructions listed, although I'm not 100% sure if I did the first and last steps correctly. Copy the ...
2
votes
1answer
82 views

Better quality for camera preview frame

I write an application for Motorola Xoom tablet with Android 3.1 for my master thesis that can scan multiple QR Codes in real time with it's camera and that displays additional information in the ...
2
votes
2answers
122 views

ZXing: Scanning Barcode with UPC + 5 Supplemental

I'm trying to scan barcode as shown below using the ZXing library. // start scanning Intent intent = new Intent("com.google.zxing.client.android.SCAN"); intent.putExtra("SCAN_MODE", "ONE_D_MODE"); ...
2
votes
1answer
138 views

QR Code scanning android

I am using Zxing Barcode scanner app to scan bar codes using Intent intent = new Intent("com.google.zxing.client.android.SCAN"); intent.putExtra("SCAN_MODE", "QR_CODE_MODE"); ...
2
votes
1answer
89 views

Zxing not decoding 1D barcode 128 when it only holds one character

When I encode one character as a 1D code 128 barcode, i.e. 'F' or 'M', Zxing doesn't decode it. I first found this issue in my own app where I integrated the zxing source code. Then I checked the ...
2
votes
2answers
100 views

how to use zxing library in windows phone 7

I want to scan products barcode using zxing libray in my Windows phone application . I'm worndering how to integrate it into the project and how to use it . thank's in advance .
2
votes
2answers
64 views

git submodule for zxing (iPhone version)?

Title says is all, really. I need a qrcode library for an iphone project. Zxing seems the obvious choice and I've used it previously. However, this will be a project that I will have to support for ...
2
votes
1answer
102 views

ZXing QR Reader Licensing Issues

I need to make a QR Reader that has a lotta functionality for the iPhone. I wanted to know whether it is legal for me to take the ScanTest sample code from the ZXingWidget example and then make the ...
2
votes
1answer
91 views

Android. Why would an image in activity 1 end up in activity 2? (Zxing CaptureActivity is activity 2)

All was going well developing a new app until I started dressing up the interface. I have implemented the zxing barcode scanner within my project for user convenience and my custom control. The only ...
2
votes
2answers
255 views

ZXing Barcode Scanner for Webapps

I'm trying to use http://zxing.appspot.com/scan to call Barcode Scanner from a WebApp, but I can't get it to work. Even after needlessly updating and reinstalling it, all it does is show the default ...
2
votes
1answer
340 views

Zxing barcode camera options

I want to integrate the zing barcode scanner to my android application. so i used zing integrator as follows public Button.OnClickListener mScan = new Button.OnClickListener() { public void ...
2
votes
1answer
220 views

Possible memory leak in Zxing's System.Drawing.Bitmap

I am currently working with Monotouch. I have an application which opens the camera and then needs to process the image that is currently being captured. I am using code which is very similar to ...
2
votes
2answers
313 views

Redlaser and Zxing issue won't scan

I am working on a phone app and U would like to use Zxing for my project. However, I know that alot of people are crazy about Redlaser so I had decided to try it out. When I went to the mall I had ...
2
votes
2answers
204 views

Problems in generating a proper qr-code using zxing

i have a problem in generating proper qr-codes with the zxing api. I am able to generate a qr-code but when i read the qr-code then chars like "äü" arent displayed right. code: BitMatrix matrix = ...
2
votes
2answers
288 views

zxing continuous scanning - iphone

I've integrated the zxing library into my app but part of my requirement is to be able to continually scan QR codes. I've accomplished this to a certain degree by dismissing and re-presenting the ...
2
votes
2answers
697 views

ZXing Android Generate 1D barcode

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 ...

1 2 3 4 5 6