0
votes
0answers
24 views

QR code scanning without fullscreen camera

I need to continuously scan QR codes in my Android app while main View of the app is on the screen. The main view should contain a window with camera preview, but not a fullscreen camera preview. An ...
0
votes
1answer
43 views

I cannot read flipped-vertical qr codes with zxing

I'm trying for a while to read QR codes in my application. I can read normal QR codes but now i have to read qr codes flipped vertically. I have thought that when you use the front camera, zxing reads ...
1
vote
0answers
59 views

ZBar vs ZXing performance?

I'm currently working on a hardware setup which requires me to scan as many QR codes as possible as quickly as possible. However, I have not found any kind of performance comparison between ZXing and ...
1
vote
0answers
79 views

How to integrate tab host with zxing qr code scanner?

I want to integrate zxing qr code scanner in my application which is having three tabs in my application. Currently when my one of the tab bar butto gets pressed at that time I am calling zxing qr ...
0
votes
1answer
73 views

QR version setting in Zxing [Android]?

I would like to generate QR image with the following setting: Specific version number, i.e: v04. Correction Level: L. (which can be done) BarcodeFormat: QRCode. (which can be done) EncodingMode: ...
-1
votes
2answers
134 views

ZXing for QR codes

In my android application I need the QR code reader, so after lots of search, I ended up with the point that there is no need to implement QR code encode/decoder from scratch and that I can use ZXing ...
0
votes
0answers
90 views

ZXING Result Points don't Match Image from QR Code on iOS

In my app, I have a QR code scanner that scans a URL from a QR code, finds the result points using getresultpoints(), and then uploads the image with points to a server. Everything runs smoothly, but ...
6
votes
1answer
197 views

Unable to scan QRCode via zxing client

I am unable to scan a QR Code having dark background(dark pink) with lighter QRcode(light pink) on it. I have integrated the zxing barcode scanner in my application to scan codes.. It works perfect ...
2
votes
2answers
172 views

Intent.createChooser android QR code reader

I want the user to choose a QR reader from his installed apps. This could be done by using the Intent.createChooser. When a picture is taken with the QR reader, the QR code should be sent back to my ...
1
vote
0answers
170 views

QR scanner with ZXing and ZBar doesn't read low quality codes on cards

I have made applications using ZXing and ZBar both. Both are working fine and read good quality QR codes always. But problem is when I scan the code on a card which is not that much nice in quality ...
-1
votes
2answers
63 views

is there any way to show a QR Code Scanner on as view on a AlertDialog in android? [closed]

My Requirement is showing a qr code scanner on a alert dialog in android application. For now i'm using zxing library and using intent base approch. But, exactly i need to show the scanner on a alert ...
1
vote
2answers
70 views

QR-Code in a web service response

I have to implement a Java SOAP web service that returns the QR Code of a text (an authorization code). What's the best way to return this QRCode? The base64 encoding of the png, the ...
0
votes
1answer
44 views

Styling/Coloring the generated QR code

hi i'm using this http://viralpatel.net/blogs/create-qr-codes-java-servlet-qr-code-java/ as my reference in generating QR images. ByteArrayOutputStream out = QRCode.from("Hello ...
-5
votes
1answer
64 views

Access phone information [closed]

im a beginner in android and java programming. currently im trying to develop a apps that scan a QR code and the apps can access information (phone no, IMEI no) and location of it being scanned and ...
0
votes
0answers
38 views

zxing cannot be resolved or is not a field

I'm a totally beginner in Java, Android programming and Eclipse related. Right now I'm trying to develop a scanner by using zebra crossing (Zxing). I copied all the source from the zxing package. Now ...
0
votes
2answers
244 views

iOS : Zxing QR Code Reader in ipad not working in landscape orientation

I am working on a landscape only iPad app and trying to integrate Zxing QR Code Scanner library to the project. I am able to successfully integrate the library, and run without any compiler errors. ...
1
vote
1answer
79 views

How to get version of qrcode by Zxing Library

QRCode have many different version (Version 1 (21×21), Version 2 (25×25), ... etc). I use zxing library to decode qrcode with different versions, and it works fine! But I don't know how to get the ...
2
votes
2answers
99 views

Finding coordinates in the ZXing library and outputting on canvas

I'm using this JS code scanner based on the ZXing library and I would like to find the coordinates of the QR code found and then put a border around the found QR code on the <canvas> element. I ...
2
votes
3answers
331 views

Customized camera view & rotation in Zxing for QR code?

I am working with such a great library zxing to read QR code. I already got QR code successfully. Now, My application runs in landscape mode and camera takes the whole screen and red QR detection ...
1
vote
0answers
207 views

ZXing QR Reader Direct Integration android

Want to develop a QR code reader.. which will customized for my application. after a lot of search i found a link http://www.androidaz.com/development/zxing-qr-reader-direct-integration this tutorial ...
0
votes
1answer
293 views

Zxing qr code decode can't get it work

I've searched all the forum and I cannot find the answer (and this is my first post, so sorry for possible errors). I've downloaded Zxing pack and I would like to get the qr code decoder work (in c#, ...
2
votes
2answers
135 views

ZXingObjC can't decode image taken from UIImagePickerController

I'm using the following code to decode a QRCode taken from camera - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info { originalImage ...
0
votes
1answer
41 views

QRGen library import can not be resolved

I am trying to generate QR-Codes in Java with the QRGen library and ZXing. I followed the instructions on this stackoverflow question. I included the following three libraries: zxing-core-1.7.jar , ...
0
votes
1answer
233 views

com.google.zxing.binarybitmap error with handling bitmap image

I have this method that reads the bitmap image to decode a qr code in a certain area in the document ( looking into four corners for qr code) Because of how i have my code it is always hitting the ...
0
votes
0answers
43 views

QR-Code providing WLAN access not working

I created a QR-Code with WLAN access data using QRCodeGen by Stefan Ganzer. SSID and password contain upper and lower case letters, numbers and a dash, noting else. Then I scanned this code with ...
0
votes
1answer
118 views

Error when using QRGen library to generate QR code

I am using the QRGen library to generate a ByteArrayOutputStream for a QR code and the generate a Bitmap image for it. I have imported the 3 following jars into my project: qrgen-1.0.jar ...
0
votes
0answers
110 views

Zxing sdk orientation issue

I am using Zxing sdk and i am facing a problem in orientation. I want my app to run in landscape when i scan the qrcode (when the camera is on).I dont know how can i make changes in the overlay view ...
2
votes
1answer
304 views

How to read multiple qr codes from one image using zxing library

I am currently developing a scanner that reads multiple QR codes found in one image. I manage to read the QR codes in the image but it's giving me inconsistent results. Assuming there are 4 QR codes ...
0
votes
1answer
685 views

QR Code Scanner in android using ZXING library

Hi I am following this material to implement QRCode Scanner in Android. Step by Step after implementing the following code in my application I am getting error in "GingerbreadOpenCameraInterface.java" ...
-1
votes
2answers
307 views

Scan qr code, pass the qr content in to query and display the result on screen in android

I am using zxing to scan qr code in android and getting the result. Now I want to pass the qr code content (which is always a number) into sqlite select query and display the result on to the screen. ...
1
vote
1answer
393 views

Obtaining QR scan results via ZXing that is integrated into your app

I used this answer to create a standalone Android library project that has the ZXing source code in it (ZXing v2.1). It compiles fine and if I run CaptureActivity, I can read a QR code as expected. ...
3
votes
2answers
365 views

QR code generated by Android zxing library doesn't scan with most QR code scanners

I am posting this to answer my own question (to spread the word in case anyone else has had this issue.) I am generating a QR code using ZXing's Android library. The QR code generates properly and I ...
-1
votes
1answer
309 views

QR Code Reader and Generator Application for Android [closed]

Newbie here, I already tried using zxing library for creating an android app that can generate a QR code image and save it on the phones SD card, a QR code scanner and be able to scan QR code image on ...
0
votes
1answer
200 views

Handle camera orientation in zxing QR code

I am developing an application which reads QR codes. So I used zxing library for reading QR codes. I successfully read a QR code in my application. The problem is that when I start my application in ...
-1
votes
1answer
124 views

Apache ant build error in zxing library [closed]

I have followed the guide on QR code scanner from below source http://code.google.com/p/zxing/wiki/GettingStarted and I have even installed apache ant on my pc. But after debugging, it gives following ...
-2
votes
1answer
83 views

ZXing : list of most famous qr-scanners to avoid “no scanner available”-dialog [closed]

I'm pretty new to android-developing. My app needs the Scanner-Result in order to identify an url. So i integrated the XZing-Scanner as Default-Scanner. But: For those, who already installed ...
0
votes
1answer
1k views

PhoneGap QR Code Scanner by XZing

I am trying to get XZing running on my PhoneGap Iphone application: After doing some researches I found this link for best instructions to install XZing to my application: Why can't XCode 4 find ...
1
vote
1answer
187 views

Get Results from zxing - directly integrated in Android

im new to all the programming stuff so please forgive me If my question is rather stupid ;) I integrated zxing directly as a library and now im trying to scan some QR Codes and get the result. But ...
0
votes
1answer
76 views

Android Barcode Scanner - Automatically choose scanner

I have integrated ZXING barcode scanner in my app. How can stop my app for asking different scanner apps(based on zxing) and automatically choose my app for scanning ?
0
votes
0answers
281 views

Issue with QR code reader using HTML 5

I am trying to develop an online QR code scanner just like this: http://webqr.com/ What I am trying to do is that, I want to activate the camera from the web page and must be able to scan the QR ...
0
votes
2answers
106 views

Stop Scaning for Barcodes by Zxing in Android

I'm developing an Android application using Zxing library to read QR codes. Now I'm almost done and only one question is left. I need app to stop scanning for 10 seconds after certain event. I have ...
1
vote
2answers
222 views

Zxing Galaxy S3

An application I'm building makes use of the zxing library to scan 1D and 2D barcodes. I am currently testing my app on a Galaxy S3 and each time I open the zxing Barcode Scanner app manually or ...
2
votes
0answers
350 views

Decoding QR Code in Java using ZXing issue

I'm running into an issue using ZXing in Java. Here's the deal, I have a PDF that includes a QR Code. I use Imagemagick to convert the PDF to a 300dpi, monochrome PNG file, which I feed to my decode ...
0
votes
1answer
97 views

How many alphanumeric charecters can be embedded in a QR Code?

As per the Wiki below QRC Storage Data the maximum number of alphanumeric charecters that can be stored is 4,296. But while trying it out, I'm unable to proceed for more than approx 2220 charecters ...
0
votes
1answer
59 views

How to set the error correction level of a QRC using QRGen?

I have the project from below working on my system: How to Create QRCode using Java But I'm unable to figure how to set the error correction level using this library.
0
votes
2answers
208 views

Is there any support available in Android to scan and read QR Code wihout using the zxing library?

We can verify and read QR code using the zxing library. But is there any native API support available in Android? Or is there any other API or means to scan and read QR codes in Android?
0
votes
2answers
265 views

How to remove white space on side QR code (using zxing)

I use zxing library to generate QRcode. When I generate QR it work fine but it have a white space on left and right side of QR. How to remove this white space (to make a bitmap width=height) Here is ...
1
vote
2answers
199 views

Android - Measuring the time between opening an activity via intent and when results are received

I have a simple application that opens the Barcode Scanner App by ZXing. Now, I want to know how much time it takes for a scan to accomplish. Basically, the time when the intent was started up to ...
0
votes
1answer
278 views

QRCode AddressBook type String to Vcard

After scanning the "ADDRESSBOOK" type from QR code, the content that I get is the simple string like: Sandeep abc def ;;my new address +908888888888 +901111111111 +902222222222 ...
0
votes
0answers
39 views

Scanner becomes blurry after scanning

I am using zxing library for iPhone to implement a QR reader app. After the first scan (that is very slow comparing to other scanning apps), the scanner view becomes blurry white. Why does it happen ...

1 2 3 4