qrcodejs icon indicating copy to clipboard operation
qrcodejs copied to clipboard

Cross-browser QRCode generator for javascript

Results 131 qrcodejs issues
Sort by recently updated
recently updated
newest added

Fixed : Adding options alt-attribute for image

Hi, after successfully implementing this library into my project, sometimes I got this error. I finally realized it always happened when the encoded string contained non-US ASCII characters (p.e. á,...

Now you can use text in other languages. ``` qrcode.makeCode("你好 こんにちは 여보세요"); ```

Can be reproduced using https://codepen.io/davidshimjs/pen/NdBYrg In the JS, line nr 12, change to following: ` qrcode.makeCode("íadsfasdsöadfas");` It doesn't draw anything.

We are not able to put padding around. It is not working properly without padding.

How Can I branded the qrcode , put image or logo on qrcode

```javascript this.qrCode = new QRCode( document.getElementById('qr'), { text: '', width: 300, height: 300, onSuccess: (value) => { console.log('value', value); } } ); ```

Added QRCode Massive with generate, add, remove, hide, show. Web ![image](https://user-images.githubusercontent.com/24993219/172738011-b3371731-1ccc-4048-82da-7f8393ea793e.png) To Save as PDF or Print: ![image](https://user-images.githubusercontent.com/24993219/172738059-f07d51c7-e31b-4628-a653-307ecd330c39.png) To Set Up ![image](https://user-images.githubusercontent.com/24993219/172738107-a0587461-5717-4923-9f69-1b3b97f6ad85.png)

When a string is passed in between 192 and 220 characters long and using correct level H a code Length Overflow appears. This looks like it is caused by the...