twostraws / CodeScanner

A SwiftUI view that is able to scan barcodes, QR codes, and more, and send back what was found.
MIT License
987 stars 272 forks source link

Retrieve raw scanned result #118

Open mildis opened 9 months ago

mildis commented 9 months ago

Some symbology can embed non-printable characters. GS1 in DataMatrix use 0x1D (Group Separator) to mark variable-length field ending. However result.string is only filled with printable characters.

How to retrieve the raw scanned decoded material ?

Thanks