Flutter plugin for scanning and generating QR codes using the ZXing library, supporting Android, iOS, and desktop platforms
flutterbarcode-generatorbarcode-scannergeneratorqrqrcodeqrcode-generatorqrcode-scannerscannerzxingbarcodezxscanner
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.9 KiB
81 lines
1.9 KiB
part of 'zxing.dart'; |
|
|
|
/// Reads barcode from String image path |
|
Future<Code> zxingReadBarcodeImagePathString( |
|
String path, { |
|
DecodeParams? params, |
|
}) => |
|
zxingReadBarcodeImagePath( |
|
XFile(path), |
|
params: params, |
|
); |
|
|
|
/// Reads barcode from XFile image path |
|
Future<Code> zxingReadBarcodeImagePath( |
|
XFile path, { |
|
DecodeParams? params, |
|
}) async { |
|
final Uint8List imageBytes = await path.readAsBytes(); |
|
imglib.Image? image = imglib.decodeImage(imageBytes); |
|
|
|
if (image == null) { |
|
return Code(); |
|
} |
|
image = resizeToMaxSize(image, params?.maxSize); |
|
return zxingReadBarcode( |
|
grayscaleBytes(image), |
|
width: image.width, |
|
height: image.height, |
|
params: params, |
|
); |
|
} |
|
|
|
/// Reads barcode from image url |
|
Future<Code> zxingReadBarcodeImageUrl( |
|
String url, { |
|
DecodeParams? params, |
|
}) async { |
|
final Uint8List imageBytes = |
|
(await NetworkAssetBundle(Uri.parse(url)).load(url)).buffer.asUint8List(); |
|
imglib.Image? image = imglib.decodeImage(imageBytes); |
|
if (image == null) { |
|
return Code(error: 'Failed to decode image'); |
|
} |
|
image = resizeToMaxSize(image, params?.maxSize); |
|
return zxingReadBarcode( |
|
grayscaleBytes(image), |
|
width: image.width, |
|
height: image.height, |
|
params: params, |
|
); |
|
} |
|
|
|
// Reads barcode from Uint8List image bytes |
|
Code zxingReadBarcode( |
|
Uint8List bytes, { |
|
required int width, |
|
required int height, |
|
DecodeParams? params, |
|
}) => |
|
_readBarcode(bytes, width, height, params); |
|
|
|
Code _readBarcode( |
|
Uint8List bytes, |
|
int width, |
|
int height, |
|
DecodeParams? params, |
|
) { |
|
return bindings |
|
.readBarcode( |
|
bytes.allocatePointer(), |
|
params?.format ?? Format.any, |
|
width, |
|
height, |
|
params?.cropWidth ?? 0, |
|
params?.cropHeight ?? 0, |
|
params?.tryHarder ?? false ? 1 : 0, |
|
params?.tryRotate ?? true ? 1 : 0, |
|
params?.tryInverted ?? false ? 1 : 0, |
|
) |
|
.toCode(); |
|
}
|
|
|