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.
140 lines
3.9 KiB
140 lines
3.9 KiB
import 'dart:async'; |
|
import 'dart:ffi'; |
|
import 'dart:io'; |
|
import 'dart:typed_data'; |
|
|
|
import 'package:ffi/ffi.dart'; |
|
import 'package:flutter/foundation.dart'; |
|
import 'package:flutter/services.dart'; |
|
|
|
import 'generated_bindings.dart'; |
|
|
|
export 'generated_bindings.dart'; |
|
export 'zxing_reader_widget.dart'; |
|
export 'zxing_writer_widget.dart'; |
|
|
|
class FlutterZxing { |
|
static const MethodChannel _channel = MethodChannel('flutter_zxing'); |
|
|
|
static Future<String?> get platformVersion async { |
|
final String? version = await _channel.invokeMethod('getPlatformVersion'); |
|
return version; |
|
} |
|
|
|
static final bindings = GeneratedBindings(dylib); |
|
|
|
static bool logEnabled = true; |
|
|
|
static String version() { |
|
return bindings.version().cast<Utf8>().toDartString(); |
|
} |
|
|
|
static CodeResult readBarcode(Uint8List bytes, int format, int width, |
|
int height, int cropWidth, int cropHeight) { |
|
return bindings.readBarcode(bytes.allocatePointer(), format, width, height, |
|
cropWidth, cropHeight, _logEnabled); |
|
} |
|
|
|
static List<CodeResult> readBarcodes(Uint8List bytes, int format, int width, |
|
int height, int cropWidth, int cropHeight) { |
|
final result = bindings.readBarcodes(bytes.allocatePointer(), format, width, |
|
height, cropWidth, cropHeight, _logEnabled); |
|
debugPrint(result.toString()); |
|
return []; |
|
} |
|
|
|
static EncodeResult encodeBarcode(String contents, int width, int height, |
|
int format, int margin, int eccLevel) { |
|
var result = bindings.encodeBarcode(contents.toNativeUtf8().cast<Int8>(), |
|
width, height, format, margin, eccLevel, _logEnabled); |
|
return result; |
|
} |
|
|
|
static int get _logEnabled => logEnabled ? 1 : 0; |
|
|
|
static String formatName(int format) => _formatNames[format] ?? 'Unknown'; |
|
} |
|
|
|
// Getting a library that holds needed symbols |
|
DynamicLibrary _openDynamicLibrary() { |
|
if (Platform.isAndroid) { |
|
return DynamicLibrary.open('libflutter_zxing.so'); |
|
} else if (Platform.isWindows) { |
|
return DynamicLibrary.open("flutter_zxing_windows_plugin.dll"); |
|
} |
|
return DynamicLibrary.process(); |
|
} |
|
|
|
DynamicLibrary dylib = _openDynamicLibrary(); |
|
|
|
extension Uint8ListBlobConversion on Uint8List { |
|
/// Allocates a pointer filled with the Uint8List data. |
|
Pointer<Int8> allocatePointer() { |
|
final blob = calloc<Int8>(length); |
|
final blobBytes = blob.asTypedList(length); |
|
blobBytes.setAll(0, this); |
|
return blob; |
|
} |
|
} |
|
|
|
extension CodeExt on CodeResult { |
|
bool get isValidBool => isValid == 1; |
|
String? get textString => |
|
text == nullptr ? null : text.cast<Utf8>().toDartString(); |
|
String get formatString => FlutterZxing.formatName(format); |
|
} |
|
|
|
extension EncodeExt on EncodeResult { |
|
bool get isValidBool => isValid == 1; |
|
String? get textString => |
|
text == nullptr ? null : text.cast<Utf8>().toDartString(); |
|
String get formatString => FlutterZxing.formatName(format); |
|
Uint32List get bytes => data.asTypedList(length); |
|
String get errorMessage => error.cast<Utf8>().toDartString(); |
|
} |
|
|
|
extension CodeFormat on Format { |
|
String get name => _formatNames[this] ?? 'Unknown'; |
|
|
|
static final writerFormats = [ |
|
Format.QRCode, |
|
Format.DataMatrix, |
|
Format.Aztec, |
|
Format.PDF417, |
|
Format.Codabar, |
|
Format.Code39, |
|
Format.Code93, |
|
Format.Code128, |
|
Format.EAN8, |
|
Format.EAN13, |
|
Format.ITF, |
|
Format.UPCA, |
|
Format.UPCE, |
|
// Format.DataBar, |
|
// Format.DataBarExpanded, |
|
// Format.MaxiCode, |
|
]; |
|
} |
|
|
|
final _formatNames = { |
|
Format.None: 'None', |
|
Format.Aztec: 'Aztec', |
|
Format.Codabar: 'CodaBar', |
|
Format.Code39: 'Code39', |
|
Format.Code93: 'Code93', |
|
Format.Code128: 'Code128', |
|
Format.DataBar: 'DataBar', |
|
Format.DataBarExpanded: 'DataBarExpanded', |
|
Format.DataMatrix: 'DataMatrix', |
|
Format.EAN8: 'EAN8', |
|
Format.EAN13: 'EAN13', |
|
Format.ITF: 'ITF', |
|
Format.MaxiCode: 'MaxiCode', |
|
Format.PDF417: 'PDF417', |
|
Format.QRCode: 'QR Code', |
|
Format.UPCA: 'UPCA', |
|
Format.UPCE: 'UPCE', |
|
Format.OneDCodes: 'OneD', |
|
Format.TwoDCodes: 'TwoD', |
|
Format.Any: 'Any', |
|
};
|
|
|