Tagged Questions

11
votes
4answers
417 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 ...
5
votes
2answers
503 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 ...
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
123 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
206 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 ...
2
votes
2answers
206 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
1answer
1k views

Why are my jpeg QR codes from ZXing not black and white?

I'm using ZXing code to create QR bar codes. I got the example code from here working: http://www.vineetmanohar.com/2010/09/java-barcode-api/ and the PNG image looks good, black and white as expected. ...
2
votes
4answers
1k views

QR-Code source that works on Blackberry

i'm trying to develop an app that integrates the qr code reader as part of the functionality. i have read about zxing as the best option. but it turns out that they dont support development for ...
2
votes
3answers
7k 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 ...
1
vote
1answer
14 views

Does ZXing project checks any of elements in ISO 18004 in section Annex K?

When reading about QR standard ISO 18004, in section Annex K (page 91), it analyzes for the parameters of Decode, Symbol Contrast, “Print” Growth, Axial Nonuniformity, and Unused Error Correction, ...
1
vote
2answers
55 views

How to encode a string in a QR code using zxing on Android?

I am trying to generate a QR code using Zxing on Android. Since java.awt.image.BufferedImage is not included in Android, I am not sure how to create the QR code image on Android. EDIT: I don't want ...
1
vote
3answers
90 views

How to execute BarCode scanner from ZXing sources on Java, Android?

I have just made application using BarCode scanner (ZXing 1.7). User doesn't use bar code scanner on his phone, therefore I can't add external Bar Code scanner into my application. I have added ZXing ...
1
vote
2answers
949 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?
1
vote
1answer
2k 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 ...
1
vote
1answer
199 views

Question regarding Zxing for Android

working with Zxing in J2ME i had: MonochromeBitmapSource source = new LCDUIImageMonochromeBitmapSource(bitmapFile); I'm having no troubles working with it Zxing in Android except in this case, i ...
1
vote
1answer
1k views

Java Unsupported major.minor version 49.0 - where is it coming from?

I have downloaded the zxing Google QR code from SVN and used eclipse to edit one of the class files. I've compiled the changes using ANT and it runs fine locally. When I run it on alive server I get ...
1
vote
1answer
805 views

Detecting QR code from an image with zxing

Is zxing library will directly detect the QR code from an image without having to determine where the location of the QR code in the image?
0
votes
1answer
27 views

Image processing for barcode detection

What would be the best way to alter an image to make it easier for zxing to detect the barcode? And how can I alter an image in such a way in java? I tried using RescaleOp to change the contrast, ...
0
votes
1answer
38 views

generate qr code from text fields zxing applet?

I am developing an app for iPhone that reads QR codes, but I need to generate this QR code as well from a PC that prints them, I need my QR generating a text string like: ...
0
votes
1answer
28 views

where does zxing check for Luminance, finder pattern and error correction level

Anyone knows where does zxing library (in Java) check for Luminance and other factors that would affect the readability of a QR code? For example, if the luminance is lower than some number, it will ...
0
votes
2answers
72 views

Decoding colored image using ZXing library in Java

I am trying to decode a colored QR code in Java with ZXing library. From some research, I know that ZXing already has the ability to do this. But i have been doing this for 2 days and what i have done ...
0
votes
2answers
42 views

How to check contents of History in android?

I am running my own application on "Samsung Y" which launches ZXing when triggers button,I don't know how to see details of barcode scanned. Please someone help me
0
votes
2answers
107 views

ZXing IntentResult cannot resolve to type

I'm trying to use Zxing in my Android app. I've added the small library here and have followed the instructions but when I try to create an IntentResult I get: IntentResult cannot be resolved to a ...
0
votes
1answer
76 views

No idea what I'm doing with IntentIntegrator

I'm having trouble getting zxing to do anything after scanning a barcode. I call the zxing using: IntentIntegrator.initiateScan(MainActivity.this); And my onActivityResult looks like this public ...
0
votes
4answers
145 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 ...
0
votes
3answers
399 views

how to import ZXING library in android application?

I need to implement ZXING QR code scanner in my application. I have complete source code for ZXING Android. Now, I want to use this in my application. my question is that should I copy all ZXING ...
0
votes
1answer
113 views

Tracking multiple QR tags from a distance using webcam and Java

I'm currently trying to build an application in Java, which should be able to read QR tags from a couple of meters. At the moment, I have JavaCV running, for capturing frames from my iSight on my ...
0
votes
1answer
200 views

Parsing zxing qrcode decode response with php

I'm using console java tool Zxing to decode qr codes from images. I call it from php and it works fine but now I'm stuck with parsing the response that it gives: ...
0
votes
1answer
498 views

Package com.google.zxing missing in android souce code for barcode scan

I have downloaded Zxing Barcode Scanner code for android. But i feel there is missing a package "com.google.zxing" in source code. I think there is missing library or jar file for project or ...
0
votes
3answers
1k views

Get ZXing to work

I followed every instructions, wiki, getting started, guides, help, etc. I could find about ZXing project. After many many debugging, I finally manged to compile using ant core.jar, javame.jar, and ...
0
votes
2answers
242 views

Embed URL in QR Code

How do I embed an URL in a QR code using Zxing, so that the barcode scanner can detect it as an URL? I think I need to add something more than just the http://.
0
votes
1answer
221 views

ZXing Integration in Android Is there a way to quit scanning without clicking on return button

If a user tries to scan a code with ZXing and they cannot i would like them to be able to click a button on the capture screen and quit the app? Is there such an option? if not where would I make ...
0
votes
1answer
372 views

Google's zxing (Zebra Crossing) barcode library's BitMatrix not where it's supposed to be

The javadoc lists the BitMatrix class as being in com.google.zxing.common. com.google.zxing.common Class BitMatrix java.lang.Object com.google.zxing.common.BitMatrix But after I compile the ...
0
votes
1answer
412 views

ZXing BarCode Scanner Only Scans App Barcodes

I have leveraged the ZXing barcode scanner intent, but it will only scan App barcodes (the barcodes that you take a picture of and it installs the app on your phone). I want it to be able to scan the ...
0
votes
2answers
428 views

How to change text when scanning barcodes with Zxing via intent in Android?

Is it possible to change prompt text that says "place the barcode inside the viewfinder..." when launching Barcode scanner (zxing) via intent (Intent intent = new ...
-1
votes
1answer
27 views

decode inverted QR code zxing

I found that there is a variable, called "int[] stateCount", in FinderPatternFinder class helps checking for any possible finder pattern in a QR code. In order to detect/locate the Finder Patterns, I ...
-3
votes
0answers
35 views

How to save scanned QR barcode values in mobile/SD card? [closed]

I am newbie to ZXing scanning,developing a android application which should launches ZXing barcode scanner and scans barcode. After scanning,barcode values should store in SD card/mobile. I already ...