We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example image:
I think this is a bug, so for now I solved it as follows. Before adding an image to the canvas, I fill it with a white square.
const canvas = document.createElement("canvas"); const ctx = canvas.getContext("2d"); canvas.width = img.width; canvas.height = img.height; ctx.fillStyle = "#fff"; ctx.fillRect(0, 0, canvas.width, canvas.height); ctx.drawImage(img, 0, 0); const image = ctx.getImageData(0, 0, img.width, img.height); const result = jsqr(image.data, image.width, image.height);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example image:
I think this is a bug, so for now I solved it as follows. Before adding an image to the canvas, I fill it with a white square.
The text was updated successfully, but these errors were encountered: