Tagged Questions
3
votes
1answer
406 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 ...
2
votes
1answer
220 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 ...
2
votes
1answer
626 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 ...
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
164 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
439 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
484 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
122 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#. ...