0
votes
0answers
14 views

ZXingWidget: Application crashes if scan mode remains idle for 10-12 minutes

I have developed an application where i have used ZXingWidget to implement QR scanning. It operates well. But the problem is when it remains idle in the scan mood, it crashes after 10-12 minutes. ...
0
votes
0answers
35 views

how to get barcode type and format with zxing library

I use Zxing library for Barcode, QRCode and Data matrix scanning. scanning process is work fine. I also get result string from didScanResult delegate method of ZXingWidgetController. - ...
2
votes
1answer
65 views

PDF 417 Detection and Decoding

Are there any free alternatives to Zxing's PDF 417 barcode detector and decoder? The following 2 iOS libraries cannot seem to scan these type of bar codes, even though they say it's supported: ...
0
votes
1answer
70 views

ZXing for Obj-C won't compile

I'm trying to implement the objective-c port of ZXing here for my iOS project. I've followed all the instructions but the compiler can't find any of the linked files. Has anyone tried to implement ...
0
votes
1answer
47 views

Most Current Version and Further Development/ new Features [closed]

i am wondering since the last commit date I found on the page was from Aug 8, 2011, if the ZBar Lib is still up to date. I decided last year to go with Zbar because of the good voting on ...
0
votes
1answer
338 views

Undefined symbols for architecture armv7s: “_OBJC_CLASS_$_ZXingWidgetController”, referenced from: objc-class-ref in RootViewController.o using Zxing

I am incorporating qrcode reader from Zxing in my app. I tested the scantest which was there in Zxing before in Xcode4.5 and it working well. I updated the iOS sdk to 6.1 and updated Xcode to 4.6 now ...
1
vote
0answers
243 views

Unsupported compiler 'GCC 4.2' selected for architecture 'armv7' in xcode 4.6

I accidentally updated my iphone to 6.1 and when that happened I came to know that I have to update the xcode version too to Version 4.6 (4H127), which I did. I had a requirement to read qrcode for ...
2
votes
0answers
89 views

ZXing Library on storyboard

First of all I am new to IOS and trying to use ZXing library on one of my projects but I am using storyboard and auto memory management. So I am having hard time to convert the sample test code that ...
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 ...
8
votes
1answer
224 views

Connecting ZXing to a button in xcode

I am new to programming, so this question I'm sure is extremely basic (bear with me!) I just installed zxing into my current xcode 4.5 project. It took me a while to get through the errors, but I ...
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 ...
0
votes
1answer
116 views

BarcodeFormat.h file not found in zxing api in ios

Integrate Zxing API in my project. Most of errors remove from api but this error not remove and there is no guidence available on net. what can I do for removing this error.
1
vote
3answers
158 views

Generate BarCode for UIImageView

I want to generate a barcode on some UIImage or UIImageView. Is it possible.I am using This for generating the barcode. Please help me. Thanks
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 ...
0
votes
2answers
298 views

How to generate barcode of given text using zxing library in iphone?

I have zxing libray using that libray I wan to generate barcode of given text, How I can achieve this?
-4
votes
1answer
175 views

Import #import ZXingWidgetController.h in iphone app [closed]

I want to use barcode scanning in my iPhone application. I'm going to use ZXing Barcode Scanner Library to do this. I have done all the steps given in this link. But when I try to import #import ...
8
votes
1answer
769 views

iPhone zXing QR Scanner - didscanresult function never fires

I have loaded the zXing project into my own project. It loads fine, the zXing scanner pops up after a button call. I can dismiss the view controller on thezxingControllerDidCancel but when I scan a ...
0
votes
1answer
942 views

AVCaptureSession - Stop Running - take a long long time

I use ZXing for an app, this is mainly the same code than the ZXing original code except that I allow to scan several time in a row (ie., the ZXingWidgetController is not necesseraly dismissed as soon ...
0
votes
2answers
463 views

Zxing Library for Iphone

Can I use the ZXing Library and scan a qr code in the background of my iphone app? I do not want the camera overlay with the square that looks for the qr code and the cancel button (as is shown in the ...
0
votes
2answers
1k views

Error : 'ZXingWidgetController.h' file not found

I get this error and i have done everything i can. I have tried adding the relative path or the absolute path and none work. Is there anything else that i should do to get ZXing working? Also im not ...
0
votes
4answers
2k views

QR Reader for iPhone

So i need to write a QR reader for an iphone application. Usually frameworks like ZXING and ZBAr allow you to download an application and then read the barcode. I want to integrate it within the ...
0
votes
0answers
147 views

QRCode scanning issue

I am using Zxing SDK for scanning(decoding) QRCodes, it works well, but it does not scan some QRCode especially for smaller size QRCodes. Any help?
0
votes
2answers
216 views

different behaviors for zxing decode on Android and IOS

I've finished encoding text to QR code on Android, and the decoding part works well too. And just for fun, I encode Chinese words to QR code, zxing on Android can recognize it well. However, I tried ...
0
votes
1answer
135 views

ZXingWidget header search path

Have imported the ZXingWidget project and it seems to be working as expected (after quite a bit of trail and error). What it can do now is to be activated, display a white framed view finder, scan a ...
0
votes
1answer
205 views

Change color of Zxing frame on scan

I am working on a QR code scanner using ZXing and was wondering if there was a way to change the color outline of the frame after a successful scan, much like the Scan App in the appstore does. ...
1
vote
0answers
327 views

zxing library on ipad could not recognize barcodes

I'm developing two separate projects (for iphone and ipad). Device camera scans barcodes using zxing library and populates their text to UILabel. On iPhone everything is working normally but on ipad ...
0
votes
1answer
479 views

Reading 1D barcodes using zxing for iPhone

is there a way to read 1d barcodes using zxing for iPhone? The zxing's homepage says it can only be used for QR Codes but has anyone ported 1D barcode scanning to iPhone or C++?
0
votes
2answers
2k views

ZXingWidget: Counted.h file not found

I am building an iPhone app using ZXingWidget. I followed the README instructions and got everything setup in my project and it compiled with no problem. I then imported QRCodeReader.h in my view ...
1
vote
1answer
286 views

Zxing Error While running Scan Test

'text' may be deprecated because receiver type is unknown in ZXingWidgetController.m [self presentResultForString:[twoDResult text]]; [self presentResultPoints:[twoDResult points] forImage:image ...
0
votes
1answer
806 views

Iphone Zxing: QR code scanning code not working in Release build

I have integrated Zxing source code for QR code scanning in my Iphone project. Until I built Zxing's project in Debug mode, it scans QR codes perfectly but in Release mode, the application is not ...
0
votes
1answer
314 views

ZXing under iOS does not run in emulator

I was just trying to run the ScanTest from ZXing on Xcode just to see if the code works. The project compiles without any error, but it does not run in the emulator (5.1). I just took the code ...
0
votes
1answer
506 views

How do I get zxing working with my iPhone project?

I am trying to use ZXingWidget with an iPhone project I am working on, and I followed the instructions in the readme and I only got one error message. in one of the c++ header files was this command: ...
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 ...
2
votes
2answers
595 views

ZXing multiple QR code scanning from single image iOS

Is it possible to scan multiple qr codes from a single image ? If so how can I implement it ? I have a requirement to scan all qr codes from the single image..
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 ...
0
votes
1answer
554 views

Undefined symbols for architecture i386 with CocoaLumberjack and ZXingWidget

I've integrated the ZXing QR Code reader library (ZXingWidget) into my iPhone app, but it conflicts with a function from within the CocoaLumberjack logging library that I am also using. Undefined ...
0
votes
1answer
351 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: ...
1
vote
3answers
426 views

How to get raw bytes from ZXing - IPhone

i have a big problem. I have read some post and can“t solve this problem. I have a Iphone App, this app read a QR code with zxing, but the QR have a personal encryptation. When ZXing parse this bytes ...
0
votes
1answer
472 views

ios zxing with front or rear camera

Im using ZXing, is working fine on my new app, but i would like to integrate the option of front or rear camera, so far the only reference to this i've found is on the google group But is not very ...
2
votes
1answer
651 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 ...
5
votes
2answers
3k 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 ...
0
votes
2answers
258 views

iPhone - integrate ZXing with Microsoft Tag SDK on same View

Has anyone successfully integrated ZXing QR code reader with Microsoft Tag SDK, so that the same view scans both QR Codes and Microsoft Tag codes?. I tried finding something online but have not found ...
4
votes
2answers
183 views

git submodule for zxing (iPhone version)?

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 quite a while and I'm very ...
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 ...
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~
0
votes
0answers
304 views

error while compiling Zxing iphone : too few arguments

I get the following error while integrating the Zxing lib ( http://code.google.com/p/zxing/) into my Iphone project #import "QRCodeReader.h" ...
0
votes
1answer
2k views

How to run zxing in Xcode 4.2?

friends Now, I upgraded xcode 4.2 and iOS SDK 5.0. It looks nice, but problem is that I can't run my zxing sample app in xcode 4.2. I always see following error message: "unsupported compiler 'GCC ...
3
votes
2answers
380 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
665 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
2answers
4k views

Zxing for iphone using HTML5/javascript

i am new to ios development . can anybody pls tell me . is it possible to use Zxing lib for scanning bar/qr-code on iPhone for a webapp(HTML5/javascript) ? i mean my webapp needs to use Zxing , Is ...

1 2