scanRgbaBytes method

dynamic scanRgbaBytes(
  1. Uint8List bytes,
  2. int width,
  3. int height, {
  4. bool ignoreIfUnreadable = false,
})

Scan an image encoded as a Uint8List of RGBA values to update QR code content and location.

Implementation

scanRgbaBytes(
  Uint8List bytes,
  int width,
  int height, {
  bool ignoreIfUnreadable = false,
}) {
  scanBitMatrix(convertToBinary(bytes, width, height));
}