khoren93 / flutter_zxing

Flutter plugin for scanning and generating QR codes using the ZXing library, supporting Android, iOS, and desktop platforms
https://pub.dev/packages/flutter_zxing
MIT License
87 stars 50 forks source link

Inverted Data Matrix scan #148

Open saulfrr opened 1 week ago

saulfrr commented 1 week ago

Can this package correctly scan an inverted Data Matrix?

For example, this one.

060776_3

Thanks.

khoren93 commented 1 week ago

You can try using the tryInverted: true option in the ReaderWidget widget. This should enable the package to correctly scan an inverted Data Matrix. Here's an example of how you can set it up:

ReaderWidget(
  tryInverted: true,
  // other properties
)

Let me know if this works for you!