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.
99 lines
2.2 KiB
99 lines
2.2 KiB
import 'dart:typed_data'; |
|
|
|
import 'package:camera/camera.dart'; |
|
import 'src/models/models.dart'; |
|
|
|
import 'zxing_cross.dart' |
|
if (dart.library.io) 'zxing_mobile.dart' |
|
if (dart.library.html) 'zxing_web.dart'; |
|
|
|
export 'package:camera/camera.dart' show ResolutionPreset; |
|
export 'src/models/models.dart'; |
|
export 'src/ui/ui.dart'; |
|
|
|
final Zxing zx = Zxing(); |
|
|
|
abstract class Zxing { |
|
/// factory constructor to return the correct implementation. |
|
factory Zxing() => getZxing(); |
|
|
|
String version() => ''; |
|
void setLogEnabled(bool enabled) {} |
|
String barcodeFormatName(int format) => ''; |
|
|
|
/// Creates barcode from the given contents |
|
Encode encodeBarcode({ |
|
required String contents, |
|
required EncodeParams params, |
|
}); |
|
|
|
/// Starts reading barcode from the camera |
|
Future<void> startCameraProcessing(); |
|
|
|
/// Stops reading barcode from the camera |
|
void stopCameraProcessing(); |
|
|
|
/// Reads barcode from the camera |
|
Future<Code> processCameraImage( |
|
CameraImage image, { |
|
DecodeParams? params, |
|
}); |
|
|
|
/// Reads barcodes from the camera |
|
Future<Codes> processCameraImageMulti( |
|
CameraImage image, { |
|
DecodeParams? params, |
|
}); |
|
|
|
/// Reads barcode from String image path |
|
Future<Code> readBarcodeImagePathString( |
|
String path, { |
|
DecodeParams? params, |
|
}); |
|
|
|
/// Reads barcode from XFile image path |
|
Future<Code> readBarcodeImagePath( |
|
XFile path, { |
|
DecodeParams? params, |
|
}); |
|
|
|
/// Reads barcode from image url |
|
Future<Code> readBarcodeImageUrl( |
|
String url, { |
|
DecodeParams? params, |
|
}); |
|
|
|
// Reads barcode from Uint8List image bytes |
|
Code readBarcode( |
|
Uint8List bytes, { |
|
required int width, |
|
required int height, |
|
DecodeParams? params, |
|
}); |
|
|
|
/// Reads barcodes from String image path |
|
Future<Codes> readBarcodesImagePathString( |
|
String path, { |
|
DecodeParams? params, |
|
}); |
|
|
|
/// Reads barcodes from XFile image path |
|
Future<Codes> readBarcodesImagePath( |
|
XFile path, { |
|
DecodeParams? params, |
|
}); |
|
|
|
/// Reads barcodes from image url |
|
Future<Codes> readBarcodesImageUrl( |
|
String url, { |
|
DecodeParams? params, |
|
}); |
|
|
|
/// Reads barcodes from Uint8List image bytes |
|
Codes readBarcodes( |
|
Uint8List bytes, { |
|
required int width, |
|
required int height, |
|
DecodeParams? params, |
|
}); |
|
}
|
|
|