
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
qrcode-generator-es6
Advanced tools
|
|
First run:
npm install --save qrcode-generator-es6
Then use it in your code like:
import qrcode from './qrcode.js';
const qr = new qrcode(0, 'H');
qr.addData('This is my data');
qr.make();
my_element.innerHTML = qr.createSvgTag({});
Displays a QR code. Set the code data with addData
and, call make
and then call createSvgTag
or createImgTag
.
See gallery.html
for an example.
Parameters
typeNumber
integer The minimum QR code type number from 1 to 40. Using 0 allows any QR code type number.errorCorrectionLevel
String 'L','M','Q','H'Parameters
row
col
Returns boolean true if the module at row, col
is dark.
Returns integer The module count in one dimension of the QR code. The total number of modules is the square of this value.
Call this when done adding data before getting the generated QR code image.
Parameters
args
Object
args.drawCell
function? A callback with arguments column, row, x, y
to draw a cell. x, y
are the coordinates to draw it at. c, y
are the QR code module indexes. Returns the svg element child string for the cell.args.cellColor
function? A callback which returns the color for the cell. By default, a function that returns black
. Unused if drawCell
is provided.args.margin
integer? The margin to draw around the QR code, by number of cells.args.obstruction
Object? An image to place in the center of the QR code.
args.obstruction.width
integer Width of the obstruction as a percentage of QR code width.args.obstruction.height
integer Height of the obstruction as a percentage of QR code height.args.obstruction.path
String The path of the obstruction image.args.cellSize
Returns String An svg tag as a string.
Parameters
cellSize
integer The size of a module in pixels.margin
integer The margin to draw around the QR code in pixels.Returns String An img tag as a string.
FAQs
ES6 QR Code generation module with colors and logos
The npm package qrcode-generator-es6 receives a total of 383 weekly downloads. As such, qrcode-generator-es6 popularity was classified as not popular.
We found that qrcode-generator-es6 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.