Tagged Questions
4
votes
1answer
259 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
1answer
536 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
1answer
704 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 ...
3
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 ...
2
votes
1answer
179 views
C# ZXing reader example
Has anyone had success using a recent version of ZXing under C#?
I'm attempting to use ZXing to process images I'm pulling in from the webcam, ideally in "real"time, but all the examples I can find ...
2
votes
1answer
505 views
zxing in C# using IKVM
I converted the jar file into .net dll file using IKVM. Now i am trying to consume it in my .net app, but it seems that the qrcodereader.decode requires BinaryBitmap which further requires Luminance ...
1
vote
1answer
59 views
ZXing multiformat reading under C#?
Using ZXing with a webcam feed to try and read a variety of Barcodes/QR codes. Only one problem, it's refusing to read them. It will read one barcode I have lying around, I think a type 128, but when ...
1
vote
1answer
302 views
Required Qr code Detector sample using zxing
I'm a beginer in QR code application and now I'm trying to develop application to detect QR code in the image. but i count not find any reference/sample in it.I'm using Zbar crossing zxing library and ...
1
vote
1answer
504 views
Problems with c# zxing port
first excuse me for the bad english, then i wanna ask you a piece of advice to solve this problem. I'm trying to use zxing C# port.
I tried then to parse this image:
at zxing.org which recognized ...
0
votes
0answers
36 views
ZXing library in WPF
I found ZXing is very popular. Has anyone implemented in WPF application. Or atleast is it possible to do so?
here is link to library .
http://code.google.com/p/zxing/wiki/GettingStarted
0
votes
0answers
171 views
Detecting QR code using zxing
I'm working on detecting the qrcode. My requirement is when the user show’s his/her QR code to the camera, the program has to detect and draw one box around the QR code. I’m using zxing library + C#. ...