zxing-dart
zxing-dart copied to clipboard
This package is a pure Dart port of the ZXing ("zebra crossing") Java library.
I am using your example code and was able to produce a barcode, but the background looks transparent when I think it should be white. Your example code cannot read...
``` LuminanceSource source = RGBLuminanceSource( image.width, image.height, image .convert(numChannels: 4) .getBytes(order: img.ChannelOrder.abgr) .buffer .asInt32List()); var bitmap = BinaryBitmap(HybridBinarizer(source)); final hints = DecodeHints()..put(DecodeHintType.characterSet, 'UTF-8'); var result = QRCodeReader().decode(bitmap, hints: hints); ```...
I tried to scan a QR code from Google Authenticator, but I got a 'FormatReaderException' error. Used was this Function: QRCodeReader().decode(bitmap); My code successfully scanned other QR codes generated by...
This is a Nice package with very good performance Nice work Done here ... As I see Right Now Only QR Code Is Supported: `class QRCodeReader implements Reader {` can...
The current example app seems not to be working.
I have tried to find the flutter library that supports scan QR codes on Windows and Android. Is this library support scanning QR codes on Windows in the future?
I've been looking into the implementation for your package and see that you determined the Finder patterns but not accessible. It would be very useful if you could make them...