You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jsqr reads simple qr code that with good background.
It probably locate the qr code but its not reading some qr code.
i got this incomplete JSON
5048-1260-7451-4628" }, "alg": "EDDSA", "signature": "ZgGTsuUtWHDh9Im1Jtqo48Wl1BF852kqF8HaAr/xnGbmyrS2q7+tJQUAvvl5qH47EdVt/5pkNrxRWO+t0xH1DQ=="}
in data field
It should have been full json like that site output.
I am wondering anyone encounter incomplete reading of QR code.
I am googling for days trying different library . None works.
I am stuck . i need help in solving this
here is image to test. let me know
The text was updated successfully, but these errors were encountered:
Hi @alexk400 ,
I'm very glad I found this issue of yours.
When I read your sentence: "I am wondering anyone encounter incomplete reading of QR code."
I thought: "Yes! That's my case".
This is the QR-code generated by a hardware device that I was trying to read:
As a result I get for QRCode.data (the string returned by jsQR):
That's 1xx characters long.
However - thanks to your 2nd comment - I found out that binaryData was much longer. (3xx characters)
By converting that binaryData array myself I get the complete data:
The character jsQR struggles with, is probably the "ö" in "Heizöl" on the 9th line.
All numbers in binaryData are < 128 except for that "ö" that leads to the number 246 in the "binaryData" array.
So, I 100% agree with your: "data is not translated to proper String output. Please fix it."
I have qr code in image and its read well by this site
https://products.aspose.app/barcode/recognize/qr#
Jsqr reads simple qr code that with good background.
It probably locate the qr code but its not reading some qr code.
i got this incomplete JSON
5048-1260-7451-4628" }, "alg": "EDDSA", "signature": "ZgGTsuUtWHDh9Im1Jtqo48Wl1BF852kqF8HaAr/xnGbmyrS2q7+tJQUAvvl5qH47EdVt/5pkNrxRWO+t0xH1DQ=="}
in data field
It should have been full json like that site output.
I am wondering anyone encounter incomplete reading of QR code.
I am googling for days trying different library . None works.
I am stuck . i need help in solving this
here is image to test. let me know
The text was updated successfully, but these errors were encountered: