-
-
Notifications
You must be signed in to change notification settings - Fork 666
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't decode QR_CODE #556
Comments
Can you post the QRCode image itself that fails to decode? |
i fixed that. Now, i push in zxing crop image and that worked. But anyway, why zxing recognize multiformat, if i push only qr_code type ? |
Well, with the |
Hi, i have a bit question. When I try to decode image, barcodereader can't find a QR_CODE format, but in "https://zxing.org" this type is recoginzed(attach a proof in picture).
My code return EAN_8, UPC_E, but not a QR_CODE.
var reader = new BarcodeReader() { AutoRotate = true}; reader.Options.TryHarder = true; reader.Options.PossibleFormats = new BarcodeFormat[] { BarcodeFormat.QR_CODE, BarcodeFormat.EAN_8, BarcodeFormat.UPC_E }; var result2 = reader.DecodeMultiple(imageMat);
Can you help me?
The text was updated successfully, but these errors were encountered: