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
Using the library in Angular 17.
I want to download the image without rendering the QR code in the DOM. I see there is a NojeJs package but I want to do it in the frontend only.
I tried the following code, to create an element and use it, but it downloads a broken file.
download2(name = 'qrcode2') { const options = { text: 'hello world', width: 150, height: 150, quietZone: 10 } const div = document.createElement('div'); div.style.display = 'none'; this.renderer.appendChild(document.body, div); new QRCode(div, options).download(name); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using the library in Angular 17.
I want to download the image without rendering the QR code in the DOM. I see there is a NojeJs package but I want to do it in the frontend only.
I tried the following code, to create an element and use it, but it downloads a broken file.
The text was updated successfully, but these errors were encountered: