1.1.4 • Published 7 years ago
qrcode-generator-es6 v1.1.4
Table of Contents
qrcode-generator-es6
How to use:
First run:
npm install --save qrcode-generator-es6Then 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({});qrcode
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
typeNumberinteger The minimum QR code type number from 1 to 40. Using 0 allows any QR code type number.errorCorrectionLevelString 'L','M','Q','H'
isDark
Parameters
rowcol
Returns boolean true if the module at row, col is dark.
getModuleCount
Returns integer The module count in one dimension of the QR code. The total number of modules is the square of this value.
make
Call this when done adding data before getting the generated QR code image.
createSvgTag
Parameters
argsObjectargs.drawCellfunction? A callback with argumentscolumn, row, x, yto draw a cell.x, yare the coordinates to draw it at.c, yare the QR code module indexes. Returns the svg element child string for the cell.args.cellColorfunction? A callback which returns the color for the cell. By default, a function that returnsblack. Unused ifdrawCellis provided.args.margininteger? The margin to draw around the QR code, by number of cells.args.obstructionObject? An image to place in the center of the QR code.args.obstruction.widthinteger Width of the obstruction as a percentage of QR code width.args.obstruction.heightinteger Height of the obstruction as a percentage of QR code height.args.obstruction.pathString The path of the obstruction image.
args.cellSize
Returns String An svg tag as a string.
createImgTag
Parameters
cellSizeinteger The size of a module in pixels.margininteger The margin to draw around the QR code in pixels.
Returns String An img tag as a string.