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, ...
83
votes
4answers
102k 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.
43
votes
6answers
33k 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 ...
29
votes
4answers
29k 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 ...
18
votes
5answers
38k 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 ...
1
vote
1answer
169 views
Zxing Camera in Portrait mode on Android
I want to show portrait orientation on Zxing's camera.
How can I do this?
22
votes
2answers
14k 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 ...
2
votes
4answers
8k views
How to use Zxing in android
I am new to Zxing. I am doing barcode conversion using zxing in my android application. Can anyone guide me how to include zxing to android device.
4
votes
2answers
7k 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
11k views
Calling barcode scanner on a button click in android application
I have downloaded the zxing 1.6 and was able to successfully run a standalone barcode scanner through it. Now this scanner is in another project and (the CaptureActivity) and I have my app's different ...
11
votes
3answers
6k views
zxing in xcode 4.5 and ios 6
As many of you noticed; zxing does not work in latest xcode (4.5/ios 6)
Here is use case:
checkout latest version from trunk (as some fixes were already added)
create single view application ...
15
votes
4answers
5k 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~
14
votes
4answers
4k views
Xcode 4.6 zXing compile error after Xcode update (4H127)
Different projects using ZXing have error after last Xcode update:
Error messages are:
private field 'cached_y_' is not used
Private field 'bits_' is not used
Private field 'cached_row_num_' is not ...
4
votes
3answers
14k views
How To Use ZXing C# Port
NOTE: My original question was about whether the ZXing C# port is reliable, but here, I'm trying to figure out how to use it. Thus, they are not duplicates.
I'm trying to use the ZXing C# module, but ...
2
votes
4answers
2k views
Generate and Decode QR Codes from PHP
Can anyone recommend a PHP library (if one exist) that will generate and decode QR codes? This seems to do the job: http://code.google.com/p/zxing/ but it is in Java. If I have to use ZXing, how do I ...
2
votes
3answers
4k views
getting scan result when using zxing?
I am currently using the Zxing library in my app. After scanning the bar code of a book for example, how do I get things like the image, description, etc. from the scan result.
...
0
votes
1answer
3k views
Android ZXing implementation
I created a project with the ZXing source code. That works fine.
After I changed the package name
com.google.zxing.client.android
to
com.google.zxing.client.android.vofox
But it shows ...
13
votes
2answers
4k views
Embedding ZXing in android app
So I'm 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 ...
4
votes
2answers
4k 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 ...
10
votes
3answers
11k 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 ...
6
votes
2answers
4k 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 ...
3
votes
5answers
9k views
Getting started with ZXing on Android
I'm trying to add ZXing to my project (add a button which calls the scanner upon press). I found this: http://groups.google.com/group/android-developers/browse_thread/thread/788eb52a765c28b5 and of ...
11
votes
1answer
2k views
Android zxing - portrait camera preview/surfaceview is stretched/warped
I have managed to use the answer here to rotate the camera preview to portrait:
http://code.google.com/p/zxing/issues/detail?id=178#c46
however the preview itself is stretched/warped - the height ...
1
vote
5answers
1k views
Generating QR code on Windows Phone 7.1 using ZXing 2.0 C# Port
I'm having trouble generating a QR code on mango 7.1 with ZXing 2.0.
It should be pretty straight forward, but it's not working.
The code:
QRCodeWriter writer = new QRCodeWriter();
var bMatrix = ...
3
votes
1answer
1k views
Can I control the flashlight without using android.hardware.Camera?
The use of front light option with zxing1.6 barcode scanner does not work on my Nexus One. I need to be able to use the flashlight in my app, but you can't have two instances of the camera running. Is ...
1
vote
1answer
4k views
android : How to use zxing based qr code with inbuilt scanner [duplicate]
Possible Duplicate:
Using ZXing to create an android barcode scanning app
I want to develop something in which the zxing scanner gives me results and i will do the rest of the job.The ...
0
votes
2answers
641 views
How to force using zxing lib with only my application?
Ok lets say there are 3 different applications which are using zxing lib on the phone. Whenever I want to open zxing with my own application android asks me whether to complete action using app 1 or ...
4
votes
1answer
4k views
Create/Generate Barcode usign Zxing on Android
I need to write an android aplication to create/generate a barcode using a string with the value to show.
The android app had to show a pic with the barcode to be scaned with other phone.
I read a ...
1
vote
4answers
3k views
IPhone Zxing ,ZBar DataMatrix barcode scanning?
i want to scan datamatrix barcode.i am using XZing 1.7 and Zbar but they both did not support the data matrix scanning.
In Zxing's DecodeHints.cpp class BARCODEFORMAT_DATA_MATRIX_HINT line is ...
0
votes
1answer
764 views
Issue to read multiple barcodes using zxing library
I am trying to read 2D Data matrix barcode using zxing library(GenericMultipleBarcodeReader). I have multiple barcodes on a single image.
The problem is that the efficiency of the zing reader is ...
0
votes
3answers
189 views
How to scan images using camera in Black berry?
I have started one project in which I want to implement QR code scanning functionality. Say for example: ZXing in android. I want to implement for blackberry OS 6 and above. I want to scan live ...
-1
votes
1answer
764 views
Integrating ZXing library: PackageManager$NameNotFoundException
I am using zxing library, where I have built ZXing Android using Eclipse and included ZXing Android into my project
and the poject manifest is
<?xml version="1.0" encoding="utf-8"?>
...
18
votes
5answers
5k views
Undefined symbols for architecture armv7 when using ZXing library in XCode 4.5
What I am trying to do
Integrate Zxing, QR code reader framework, in my iPhone project. I checked out ZXing sdk from here. I ran the sample project coming with ZXing, named ScanTest, without any ...
5
votes
3answers
2k views
zxing integration into monodroid app
I'm trying to integrate ZXing's barcode scanner into a MonoDroid application. I see that normal Android (java) apps have IntentIntegration.java and IntentResult.java to include into their project to ...
1
vote
1answer
6k views
Decoding a QR code in an Android application?
In Android, Using ZXing we can scan a QR code through phone camera and decode it.
But, in my scenario, the QR code image is stored in the phone itself and I need to decode it.
Is there anyway to ...
8
votes
2answers
1k views
Android ZXing Get Barcode Image
I am using Zxing library to generate a barcode in my Android application
Intent intent = new Intent("com.google.zxing.client.android.ENCODE");
intent.putExtra("ENCODE_FORMAT", "UPC_A");
...
4
votes
2answers
3k views
iOS - How to decode image with zxing
I need to decode an QR image using the zxing library for iOS.
I'm new to iOS programming, and have been looking through the code examples included in the project, but I can't figure out how to just ...
4
votes
1answer
673 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 ...
3
votes
2answers
3k 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
3answers
867 views
ZxingWidget archive error on ios6.0
I try to archive the ZxingWedget Demo,scanTest. compile is ok. it can run on the simulator.
but it can not archive completely on ios6.0.
this is the error:
Stripping ...
3
votes
2answers
3k views
ZXing Barcode Reader: How to make custom border around capture screen?
I want to put custom border around zxing capture screen (camera screen). What modification would I need to make for this? Which activity and layouts would I need to change to have this effect?
2
votes
2answers
1k 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 ...
0
votes
2answers
2k views
QR code scanning
I have added core jar file of ZXing according to post Integration ZXing library directly into my Android application
in my application i'm trying to create an intent that starts the QR reader ...
8
votes
2answers
10k views
“iostream” file not found in Xcode 4.2
I'm adding Zxing 1.7(Qr scanner) to my projects.
I upgraded Mac OS X to Lion and xcode4.2, iOS5.0.
Problem is that when I run the project, I always saw "iostream file not found".
I run the ...
4
votes
3answers
957 views
How to integrate ZXing api with front camera in android? [closed]
I just wanted to integrate ZXing API in my android app, but cant find the proper documentation.
4
votes
1answer
2k 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
2answers
256 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
1answer
1k views
Creating colored QR codes using zxing
I am using the google open source java zxing creator: http://code.google.com/p/zxing/
to create QR codes. I have everything in place and working (I'm loading the java files using coldfusion and ...
1
vote
3answers
2k views
Managing views while integrating zxing for iPhone
I am trying to integrate zxing in my already existing iPhone app. I have referred to the ScanTest example enclosed in the project download, and have succeeded in building and running the scanner.
My ...
1
vote
1answer
517 views
Scanning Barcodes (ZXing) in a own Thread and displaying a ProgessDialog
since I know this side most of my questions have been answered be using the search. But this seems to be a special one.
I am new to Google Android development, so I want to learn by doing. I want to ...
0
votes
1answer
119 views
How to trigger bulk mode scan in zxing
I read there is a key to enable bulk mode scan in zxing. May I know how do i enable this key in an android application?
I am currently using such codes to scan a barcode individually:
Intent intent ...

