twostraws / CodeScanner

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

Retrieve raw scanned result #118

Open mildis opened 1 year ago

mildis commented 1 year 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