zxing-js / browser

ZXing for JS's browser layer with decoding implementations for browser.
MIT License
213 stars 43 forks source link

Missing chars in scanned code #119

Open mkekit opened 1 year ago

mkekit commented 1 year ago

Hello! First of all, thank you for your effort in creating this library! However, we are currently experiencing an issue with scanning Data Matrix codes that use a backslash as a separator. The resulting code "01031651405470001123062921326000015240082" should actually be "01031651405470001123062921326000015\F240082," but unfortunately, it omits the "\F" characters.

We have tried obtaining the code using TextDecoder & result.getRawBytes() and result.getText() but either doesn't work.

Is there a solution to this?

Thank you.