2018-06-23 16:16:04 +00:00
|
|
|
/*
|
|
|
|
* QR Code generator library (TypeScript)
|
|
|
|
*
|
|
|
|
* Copyright (c) Project Nayuki. (MIT License)
|
|
|
|
* https://www.nayuki.io/page/qr-code-generator-library
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
* this software and associated documentation files (the "Software"), to deal in
|
|
|
|
* the Software without restriction, including without limitation the rights to
|
|
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
* subject to the following conditions:
|
|
|
|
* - The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
* - The Software is provided "as is", without warranty of any kind, express or
|
|
|
|
* implied, including but not limited to the warranties of merchantability,
|
|
|
|
* fitness for a particular purpose and noninfringement. In no event shall the
|
|
|
|
* authors or copyright holders be liable for any claim, damages or other
|
|
|
|
* liability, whether in an action of contract, tort or otherwise, arising from,
|
|
|
|
* out of or in connection with the Software or the use or other dealings in the
|
|
|
|
* Software.
|
|
|
|
*/
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
namespace qrcodegen {
|
|
|
|
|
|
|
|
type bit = number;
|
|
|
|
type byte = number;
|
|
|
|
type int = number;
|
|
|
|
|
|
|
|
|
|
|
|
/*---- QR Code symbol class ----*/
|
|
|
|
|
|
|
|
/*
|
2018-10-04 18:48:29 +00:00
|
|
|
* Represents an immutable square grid of black and white cells for a QR Code symbol, and
|
|
|
|
* provides static functions to create a QR Code from user-supplied textual or binary data.
|
|
|
|
* This class covers the QR Code Model 2 specification, supporting all versions (sizes)
|
|
|
|
* from 1 to 40, all 4 error correction levels, and 4 character encoding modes.
|
2018-06-23 16:16:04 +00:00
|
|
|
* This constructor creates a new QR Code symbol with the given version number, error correction level, binary data array,
|
|
|
|
* and mask number. mask = -1 is for automatic choice, or 0 to 7 for fixed choice. This is a cumbersome low-level constructor
|
|
|
|
* that should not be invoked directly by the user. To go one level up, see the QrCode.encodeSegments() function.
|
|
|
|
*/
|
|
|
|
export class QrCode {
|
|
|
|
|
2018-10-04 19:56:07 +00:00
|
|
|
/*-- Static factory functions (high level) --*/
|
2018-06-23 16:16:04 +00:00
|
|
|
|
2018-08-28 20:59:24 +00:00
|
|
|
// Returns a QR Code symbol representing the given Unicode text string at the given error correction level.
|
2018-06-23 16:16:04 +00:00
|
|
|
// As a conservative upper bound, this function is guaranteed to succeed for strings that have 738 or fewer
|
|
|
|
// Unicode code points (not UTF-16 code units) if the low error correction level is used. The smallest possible
|
|
|
|
// QR Code version is automatically chosen for the output. The ECC level of the result may be higher than the
|
|
|
|
// ecl argument if it can be done without increasing the version.
|
2018-08-27 03:10:17 +00:00
|
|
|
public static encodeText(text: string, ecl: QrCode.Ecc): QrCode {
|
2018-06-23 16:16:04 +00:00
|
|
|
let segs: Array<QrSegment> = qrcodegen.QrSegment.makeSegments(text);
|
|
|
|
return QrCode.encodeSegments(segs, ecl);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Returns a QR Code symbol representing the given binary data string at the given error correction level.
|
|
|
|
// This function always encodes using the binary segment mode, not any text mode. The maximum number of
|
|
|
|
// bytes allowed is 2953. The smallest possible QR Code version is automatically chosen for the output.
|
|
|
|
// The ECC level of the result may be higher than the ecl argument if it can be done without increasing the version.
|
2018-08-27 03:10:17 +00:00
|
|
|
public static encodeBinary(data: Array<byte>, ecl: QrCode.Ecc): QrCode {
|
2018-06-23 16:16:04 +00:00
|
|
|
let seg: QrSegment = qrcodegen.QrSegment.makeBytes(data);
|
|
|
|
return QrCode.encodeSegments([seg], ecl);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-04 19:56:07 +00:00
|
|
|
/*-- Static factory functions (mid level) --*/
|
|
|
|
|
2018-08-28 21:08:00 +00:00
|
|
|
// Returns a QR Code symbol representing the given segments with the given encoding parameters.
|
2018-06-23 16:16:04 +00:00
|
|
|
// The smallest possible QR Code version within the given range is automatically chosen for the output.
|
|
|
|
// This function allows the user to create a custom sequence of segments that switches
|
|
|
|
// between modes (such as alphanumeric and binary) to encode text more efficiently.
|
|
|
|
// This function is considered to be lower level than simply encoding text or binary data.
|
2018-08-27 03:10:17 +00:00
|
|
|
public static encodeSegments(segs: Array<QrSegment>, ecl: QrCode.Ecc,
|
2018-08-31 16:06:08 +00:00
|
|
|
minVersion: int = 1, maxVersion: int = 40,
|
2018-06-23 16:16:04 +00:00
|
|
|
mask: int = -1, boostEcl: boolean = true): QrCode {
|
|
|
|
|
|
|
|
if (!(QrCode.MIN_VERSION <= minVersion && minVersion <= maxVersion && maxVersion <= QrCode.MAX_VERSION)
|
|
|
|
|| mask < -1 || mask > 7)
|
|
|
|
throw "Invalid value";
|
|
|
|
|
|
|
|
// Find the minimal version number to use
|
|
|
|
let version: int;
|
|
|
|
let dataUsedBits: int;
|
|
|
|
for (version = minVersion; ; version++) {
|
|
|
|
let dataCapacityBits: int = QrCode.getNumDataCodewords(version, ecl) * 8; // Number of data bits available
|
2018-08-28 16:20:01 +00:00
|
|
|
let usedBits: number = QrSegment.getTotalBits(segs, version);
|
|
|
|
if (usedBits <= dataCapacityBits) {
|
2018-06-23 16:16:04 +00:00
|
|
|
dataUsedBits = usedBits;
|
|
|
|
break; // This version number is found to be suitable
|
|
|
|
}
|
|
|
|
if (version >= maxVersion) // All versions in the range could not fit the given data
|
|
|
|
throw "Data too long";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Increase the error correction level while the data still fits in the current version number
|
2018-08-31 17:03:51 +00:00
|
|
|
for (let newEcl of [QrCode.Ecc.MEDIUM, QrCode.Ecc.QUARTILE, QrCode.Ecc.HIGH]) { // From low to high
|
2018-06-23 16:16:04 +00:00
|
|
|
if (boostEcl && dataUsedBits <= QrCode.getNumDataCodewords(version, newEcl) * 8)
|
|
|
|
ecl = newEcl;
|
2018-08-31 17:03:51 +00:00
|
|
|
}
|
2018-06-23 16:16:04 +00:00
|
|
|
|
2018-08-22 19:22:00 +00:00
|
|
|
// Concatenate all segments to create the data bit string
|
2018-06-23 16:16:04 +00:00
|
|
|
let bb = new BitBuffer();
|
2018-08-31 17:03:51 +00:00
|
|
|
for (let seg of segs) {
|
2018-06-23 16:16:04 +00:00
|
|
|
bb.appendBits(seg.mode.modeBits, 4);
|
|
|
|
bb.appendBits(seg.numChars, seg.mode.numCharCountBits(version));
|
2018-08-31 17:03:51 +00:00
|
|
|
for (let b of seg.getBits())
|
|
|
|
bb.push(b);
|
|
|
|
}
|
2018-08-28 06:22:22 +00:00
|
|
|
if (bb.length != dataUsedBits)
|
|
|
|
throw "Assertion error";
|
2018-06-23 16:16:04 +00:00
|
|
|
|
|
|
|
// Add terminator and pad up to a byte if applicable
|
2018-08-26 02:03:27 +00:00
|
|
|
let dataCapacityBits: int = QrCode.getNumDataCodewords(version, ecl) * 8;
|
|
|
|
if (bb.length > dataCapacityBits)
|
|
|
|
throw "Assertion error";
|
2018-06-23 16:16:04 +00:00
|
|
|
bb.appendBits(0, Math.min(4, dataCapacityBits - bb.length));
|
|
|
|
bb.appendBits(0, (8 - bb.length % 8) % 8);
|
2018-08-26 02:03:27 +00:00
|
|
|
if (bb.length % 8 != 0)
|
|
|
|
throw "Assertion error";
|
2018-06-23 16:16:04 +00:00
|
|
|
|
2018-08-26 02:03:27 +00:00
|
|
|
// Pad with alternating bytes until data capacity is reached
|
2018-06-23 16:16:04 +00:00
|
|
|
for (let padByte = 0xEC; bb.length < dataCapacityBits; padByte ^= 0xEC ^ 0x11)
|
|
|
|
bb.appendBits(padByte, 8);
|
|
|
|
|
|
|
|
// Create the QR Code symbol
|
|
|
|
return new QrCode(bb.getBytes(), mask, version, ecl);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*-- Fields --*/
|
|
|
|
|
|
|
|
// The width and height of this QR Code symbol, measured in modules.
|
|
|
|
// Always equal to version * 4 + 17, in the range 21 to 177.
|
|
|
|
public readonly size: int;
|
|
|
|
|
2018-10-05 00:40:49 +00:00
|
|
|
// The modules of this QR Code symbol (false = white, true = black). Immutable after constructor finishes.
|
2018-06-23 16:16:04 +00:00
|
|
|
private readonly modules: Array<Array<boolean>> = [];
|
|
|
|
|
2018-10-05 00:40:49 +00:00
|
|
|
// Indicates function modules that are not subjected to masking. Discarded when constructor finishes.
|
2018-06-23 16:16:04 +00:00
|
|
|
private readonly isFunction: Array<Array<boolean>> = [];
|
|
|
|
|
|
|
|
|
2018-10-04 19:56:07 +00:00
|
|
|
/*-- Constructor (low level) and fields --*/
|
2018-08-31 17:41:20 +00:00
|
|
|
|
|
|
|
public constructor(
|
|
|
|
datacodewords: Array<byte>,
|
|
|
|
|
|
|
|
// The mask pattern used in this QR Code symbol, in the range 0 to 7 (i.e. unsigned 3-bit integer).
|
|
|
|
// Note that even if the constructor was called with automatic masking requested
|
|
|
|
// (mask = -1), the resulting object will still have a mask value between 0 and 7.
|
|
|
|
public readonly mask: int,
|
|
|
|
|
|
|
|
// This QR Code symbol's version number, which is always between 1 and 40 (inclusive).
|
|
|
|
public readonly version: int,
|
|
|
|
|
|
|
|
// The error correction level used in this QR Code symbol.
|
|
|
|
public readonly errorCorrectionLevel: QrCode.Ecc) {
|
|
|
|
|
2018-06-23 16:16:04 +00:00
|
|
|
// Check arguments and handle simple scalar fields
|
|
|
|
if (mask < -1 || mask > 7)
|
|
|
|
throw "Mask value out of range";
|
|
|
|
if (version < QrCode.MIN_VERSION || version > QrCode.MAX_VERSION)
|
|
|
|
throw "Version value out of range";
|
|
|
|
this.size = version * 4 + 17;
|
|
|
|
|
|
|
|
// Initialize both grids to be size*size arrays of Boolean false
|
|
|
|
let row: Array<boolean> = [];
|
|
|
|
for (let i = 0; i < this.size; i++)
|
|
|
|
row.push(false);
|
|
|
|
for (let i = 0; i < this.size; i++) {
|
|
|
|
this.modules.push(row.slice());
|
|
|
|
this.isFunction.push(row.slice());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle grid fields, draw function patterns, draw all codewords
|
|
|
|
this.drawFunctionPatterns();
|
2018-08-26 01:33:06 +00:00
|
|
|
let allCodewords: Array<byte> = this.addEccAndInterleave(datacodewords);
|
2018-06-23 16:16:04 +00:00
|
|
|
this.drawCodewords(allCodewords);
|
|
|
|
|
|
|
|
// Handle masking
|
|
|
|
if (mask == -1) { // Automatically choose best mask
|
|
|
|
let minPenalty: int = 1000000000;
|
|
|
|
for (let i = 0; i < 8; i++) {
|
|
|
|
this.drawFormatBits(i);
|
|
|
|
this.applyMask(i);
|
|
|
|
let penalty: int = this.getPenaltyScore();
|
|
|
|
if (penalty < minPenalty) {
|
|
|
|
mask = i;
|
|
|
|
minPenalty = penalty;
|
|
|
|
}
|
|
|
|
this.applyMask(i); // Undoes the mask due to XOR
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mask < 0 || mask > 7)
|
|
|
|
throw "Assertion error";
|
|
|
|
this.mask = mask;
|
|
|
|
this.drawFormatBits(mask); // Overwrite old format bits
|
|
|
|
this.applyMask(mask); // Apply the final choice of mask
|
2018-08-26 02:17:47 +00:00
|
|
|
this.isFunction = [];
|
2018-06-23 16:16:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*-- Accessor methods --*/
|
|
|
|
|
|
|
|
// Returns the color of the module (pixel) at the given coordinates, which is either
|
|
|
|
// false for white or true for black. The top left corner has the coordinates (x=0, y=0).
|
|
|
|
// If the given coordinates are out of bounds, then false (white) is returned.
|
|
|
|
public getModule(x: int, y: int): boolean {
|
|
|
|
return 0 <= x && x < this.size && 0 <= y && y < this.size && this.modules[y][x];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*-- Public instance methods --*/
|
|
|
|
|
|
|
|
// Draws this QR Code symbol with the given module scale and number of modules onto the given HTML canvas element.
|
|
|
|
// The canvas will be resized to a width and height of (this.size + border * 2) * scale. The painted image will be purely
|
|
|
|
// black and white with no transparent regions. The scale must be a positive integer, and the border must be a non-negative integer.
|
|
|
|
public drawCanvas(scale: int, border: int, canvas: HTMLCanvasElement): void {
|
|
|
|
if (scale <= 0 || border < 0)
|
|
|
|
throw "Value out of range";
|
|
|
|
let width: int = (this.size + border * 2) * scale;
|
|
|
|
canvas.width = width;
|
|
|
|
canvas.height = width;
|
|
|
|
let ctx = canvas.getContext("2d") as CanvasRenderingContext2D;
|
|
|
|
for (let y = -border; y < this.size + border; y++) {
|
|
|
|
for (let x = -border; x < this.size + border; x++) {
|
|
|
|
ctx.fillStyle = this.getModule(x, y) ? "#000000" : "#FFFFFF";
|
|
|
|
ctx.fillRect((x + border) * scale, (y + border) * scale, scale, scale);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-28 21:08:00 +00:00
|
|
|
// Returns a string of SVG XML code representing an image of this QR Code symbol with the given
|
|
|
|
// number of border modules. Note that Unix newlines (\n) are always used, regardless of the platform.
|
2018-06-23 16:16:04 +00:00
|
|
|
public toSvgString(border: int): string {
|
|
|
|
if (border < 0)
|
|
|
|
throw "Border must be non-negative";
|
|
|
|
let parts: Array<string> = [];
|
2018-08-22 19:32:03 +00:00
|
|
|
for (let y = 0; y < this.size; y++) {
|
|
|
|
for (let x = 0; x < this.size; x++) {
|
2018-06-23 16:16:04 +00:00
|
|
|
if (this.getModule(x, y))
|
|
|
|
parts.push(`M${x + border},${y + border}h1v1h-1z`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return `<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 ${this.size + border * 2} ${this.size + border * 2}" stroke="none">
|
|
|
|
<rect width="100%" height="100%" fill="#FFFFFF"/>
|
|
|
|
<path d="${parts.join(" ")}" fill="#000000"/>
|
|
|
|
</svg>
|
|
|
|
`
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*-- Private helper methods for constructor: Drawing function modules --*/
|
|
|
|
|
2018-08-22 19:23:40 +00:00
|
|
|
// Reads this object's version field, and draws and marks all function modules.
|
2018-06-23 16:16:04 +00:00
|
|
|
private drawFunctionPatterns(): void {
|
|
|
|
// Draw horizontal and vertical timing patterns
|
|
|
|
for (let i = 0; i < this.size; i++) {
|
|
|
|
this.setFunctionModule(6, i, i % 2 == 0);
|
|
|
|
this.setFunctionModule(i, 6, i % 2 == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Draw 3 finder patterns (all corners except bottom right; overwrites some timing modules)
|
|
|
|
this.drawFinderPattern(3, 3);
|
|
|
|
this.drawFinderPattern(this.size - 4, 3);
|
|
|
|
this.drawFinderPattern(3, this.size - 4);
|
|
|
|
|
|
|
|
// Draw numerous alignment patterns
|
2018-08-28 19:10:47 +00:00
|
|
|
let alignPatPos: Array<int> = this.getAlignmentPatternPositions();
|
2018-06-23 16:16:04 +00:00
|
|
|
let numAlign: int = alignPatPos.length;
|
|
|
|
for (let i = 0; i < numAlign; i++) {
|
|
|
|
for (let j = 0; j < numAlign; j++) {
|
2018-08-26 01:49:27 +00:00
|
|
|
// Don't draw on the three finder corners
|
|
|
|
if (!(i == 0 && j == 0 || i == 0 && j == numAlign - 1 || i == numAlign - 1 && j == 0))
|
2018-06-23 16:16:04 +00:00
|
|
|
this.drawAlignmentPattern(alignPatPos[i], alignPatPos[j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Draw configuration data
|
|
|
|
this.drawFormatBits(0); // Dummy mask value; overwritten later in the constructor
|
|
|
|
this.drawVersion();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Draws two copies of the format bits (with its own error correction code)
|
|
|
|
// based on the given mask and this object's error correction level field.
|
|
|
|
private drawFormatBits(mask: int): void {
|
|
|
|
// Calculate error correction code and pack bits
|
2018-08-22 20:19:04 +00:00
|
|
|
const data: int = this.errorCorrectionLevel.formatBits << 3 | mask; // errCorrLvl is uint2, mask is uint3
|
2018-06-23 16:16:04 +00:00
|
|
|
let rem: int = data;
|
|
|
|
for (let i = 0; i < 10; i++)
|
|
|
|
rem = (rem << 1) ^ ((rem >>> 9) * 0x537);
|
2018-08-22 20:19:04 +00:00
|
|
|
const bits = (data << 10 | rem) ^ 0x5412; // uint15
|
2018-08-22 19:48:29 +00:00
|
|
|
if (bits >>> 15 != 0)
|
2018-06-23 16:16:04 +00:00
|
|
|
throw "Assertion error";
|
|
|
|
|
|
|
|
// Draw first copy
|
|
|
|
for (let i = 0; i <= 5; i++)
|
2018-08-22 19:48:29 +00:00
|
|
|
this.setFunctionModule(8, i, getBit(bits, i));
|
|
|
|
this.setFunctionModule(8, 7, getBit(bits, 6));
|
|
|
|
this.setFunctionModule(8, 8, getBit(bits, 7));
|
|
|
|
this.setFunctionModule(7, 8, getBit(bits, 8));
|
2018-06-23 16:16:04 +00:00
|
|
|
for (let i = 9; i < 15; i++)
|
2018-08-22 19:48:29 +00:00
|
|
|
this.setFunctionModule(14 - i, 8, getBit(bits, i));
|
2018-06-23 16:16:04 +00:00
|
|
|
|
|
|
|
// Draw second copy
|
|
|
|
for (let i = 0; i <= 7; i++)
|
2018-08-22 19:48:29 +00:00
|
|
|
this.setFunctionModule(this.size - 1 - i, 8, getBit(bits, i));
|
2018-06-23 16:16:04 +00:00
|
|
|
for (let i = 8; i < 15; i++)
|
2018-08-22 19:48:29 +00:00
|
|
|
this.setFunctionModule(8, this.size - 15 + i, getBit(bits, i));
|
2018-08-22 19:22:00 +00:00
|
|
|
this.setFunctionModule(8, this.size - 8, true); // Always black
|
2018-06-23 16:16:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Draws two copies of the version bits (with its own error correction code),
|
2018-08-22 19:23:40 +00:00
|
|
|
// based on this object's version field, iff 7 <= version <= 40.
|
2018-06-23 16:16:04 +00:00
|
|
|
private drawVersion(): void {
|
|
|
|
if (this.version < 7)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Calculate error correction code and pack bits
|
|
|
|
let rem: int = this.version; // version is uint6, in the range [7, 40]
|
|
|
|
for (let i = 0; i < 12; i++)
|
|
|
|
rem = (rem << 1) ^ ((rem >>> 11) * 0x1F25);
|
2018-08-22 20:19:04 +00:00
|
|
|
const bits: int = this.version << 12 | rem; // uint18
|
2018-08-22 19:52:50 +00:00
|
|
|
if (bits >>> 18 != 0)
|
2018-06-23 16:16:04 +00:00
|
|
|
throw "Assertion error";
|
|
|
|
|
|
|
|
// Draw two copies
|
|
|
|
for (let i = 0; i < 18; i++) {
|
2018-08-22 19:52:50 +00:00
|
|
|
let bt: boolean = getBit(bits, i);
|
2018-06-23 16:16:04 +00:00
|
|
|
let a: int = this.size - 11 + i % 3;
|
|
|
|
let b: int = Math.floor(i / 3);
|
|
|
|
this.setFunctionModule(a, b, bt);
|
|
|
|
this.setFunctionModule(b, a, bt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-22 19:23:40 +00:00
|
|
|
// Draws a 9*9 finder pattern including the border separator,
|
|
|
|
// with the center module at (x, y). Modules can be out of bounds.
|
2018-06-23 16:16:04 +00:00
|
|
|
private drawFinderPattern(x: int, y: int): void {
|
2018-09-17 03:47:58 +00:00
|
|
|
for (let dy = -4; dy <= 4; dy++) {
|
|
|
|
for (let dx = -4; dx <= 4; dx++) {
|
2018-09-17 03:51:57 +00:00
|
|
|
let dist: int = Math.max(Math.abs(dx), Math.abs(dy)); // Chebyshev/infinity norm
|
2018-09-17 03:47:58 +00:00
|
|
|
let xx: int = x + dx;
|
|
|
|
let yy: int = y + dy;
|
2018-06-23 16:16:04 +00:00
|
|
|
if (0 <= xx && xx < this.size && 0 <= yy && yy < this.size)
|
|
|
|
this.setFunctionModule(xx, yy, dist != 2 && dist != 4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-22 19:23:40 +00:00
|
|
|
// Draws a 5*5 alignment pattern, with the center module
|
|
|
|
// at (x, y). All modules must be in bounds.
|
2018-06-23 16:16:04 +00:00
|
|
|
private drawAlignmentPattern(x: int, y: int): void {
|
2018-09-17 03:47:58 +00:00
|
|
|
for (let dy = -2; dy <= 2; dy++) {
|
|
|
|
for (let dx = -2; dx <= 2; dx++)
|
2018-09-17 03:51:57 +00:00
|
|
|
this.setFunctionModule(x + dx, y + dy, Math.max(Math.abs(dx), Math.abs(dy)) != 1);
|
2018-06-23 16:16:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Sets the color of a module and marks it as a function module.
|
2018-08-22 19:23:40 +00:00
|
|
|
// Only used by the constructor. Coordinates must be in bounds.
|
2018-06-23 16:16:04 +00:00
|
|
|
private setFunctionModule(x: int, y: int, isBlack: boolean): void {
|
|
|
|
this.modules[y][x] = isBlack;
|
|
|
|
this.isFunction[y][x] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*-- Private helper methods for constructor: Codewords and masking --*/
|
|
|
|
|
|
|
|
// Returns a new byte string representing the given data with the appropriate error correction
|
|
|
|
// codewords appended to it, based on this object's version and error correction level.
|
2018-08-26 01:33:06 +00:00
|
|
|
private addEccAndInterleave(data: Array<byte>): Array<byte> {
|
2018-06-23 16:16:04 +00:00
|
|
|
const ver: int = this.version;
|
2018-08-27 03:10:17 +00:00
|
|
|
const ecl: QrCode.Ecc = this.errorCorrectionLevel;
|
2018-06-23 16:16:04 +00:00
|
|
|
if (data.length != QrCode.getNumDataCodewords(ver, ecl))
|
|
|
|
throw "Invalid argument";
|
|
|
|
|
|
|
|
// Calculate parameter numbers
|
2018-08-27 03:13:48 +00:00
|
|
|
let numBlocks: int = QrCode.NUM_ERROR_CORRECTION_BLOCKS[ecl.ordinal][ver];
|
2018-08-31 17:23:16 +00:00
|
|
|
let blockEccLen: int = QrCode.ECC_CODEWORDS_PER_BLOCK [ecl.ordinal][ver];
|
2018-06-23 16:16:04 +00:00
|
|
|
let rawCodewords: int = Math.floor(QrCode.getNumRawDataModules(ver) / 8);
|
|
|
|
let numShortBlocks: int = numBlocks - rawCodewords % numBlocks;
|
|
|
|
let shortBlockLen: int = Math.floor(rawCodewords / numBlocks);
|
|
|
|
|
|
|
|
// Split data into blocks and append ECC to each block
|
|
|
|
let blocks: Array<Array<byte>> = [];
|
|
|
|
let rs = new ReedSolomonGenerator(blockEccLen);
|
|
|
|
for (let i = 0, k = 0; i < numBlocks; i++) {
|
|
|
|
let dat: Array<byte> = data.slice(k, k + shortBlockLen - blockEccLen + (i < numShortBlocks ? 0 : 1));
|
|
|
|
k += dat.length;
|
|
|
|
let ecc: Array<byte> = rs.getRemainder(dat);
|
|
|
|
if (i < numShortBlocks)
|
|
|
|
dat.push(0);
|
2018-08-31 17:00:52 +00:00
|
|
|
blocks.push(dat.concat(ecc));
|
2018-06-23 16:16:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Interleave (not concatenate) the bytes from every block into a single sequence
|
|
|
|
let result: Array<byte> = [];
|
|
|
|
for (let i = 0; i < blocks[0].length; i++) {
|
|
|
|
for (let j = 0; j < blocks.length; j++) {
|
|
|
|
// Skip the padding byte in short blocks
|
|
|
|
if (i != shortBlockLen - blockEccLen || j >= numShortBlocks)
|
|
|
|
result.push(blocks[j][i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (result.length != rawCodewords)
|
|
|
|
throw "Assertion error";
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Draws the given sequence of 8-bit codewords (data and error correction) onto the entire
|
|
|
|
// data area of this QR Code symbol. Function modules need to be marked off before this is called.
|
|
|
|
private drawCodewords(data: Array<byte>): void {
|
|
|
|
if (data.length != Math.floor(QrCode.getNumRawDataModules(this.version) / 8))
|
|
|
|
throw "Invalid argument";
|
|
|
|
let i: int = 0; // Bit index into the data
|
|
|
|
// Do the funny zigzag scan
|
|
|
|
for (let right = this.size - 1; right >= 1; right -= 2) { // Index of right column in each column pair
|
|
|
|
if (right == 6)
|
|
|
|
right = 5;
|
|
|
|
for (let vert = 0; vert < this.size; vert++) { // Vertical counter
|
|
|
|
for (let j = 0; j < 2; j++) {
|
|
|
|
let x: int = right - j; // Actual x coordinate
|
|
|
|
let upward: boolean = ((right + 1) & 2) == 0;
|
|
|
|
let y: int = upward ? this.size - 1 - vert : vert; // Actual y coordinate
|
|
|
|
if (!this.isFunction[y][x] && i < data.length * 8) {
|
|
|
|
this.modules[y][x] = getBit(data[i >>> 3], 7 - (i & 7));
|
|
|
|
i++;
|
|
|
|
}
|
2018-08-28 21:08:00 +00:00
|
|
|
// If this QR Code has any remainder bits (0 to 7), they were assigned as
|
|
|
|
// 0/false/white by the constructor and are left unchanged by this method
|
2018-06-23 16:16:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i != data.length * 8)
|
|
|
|
throw "Assertion error";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-22 19:22:00 +00:00
|
|
|
// XORs the codeword modules in this QR Code with the given mask pattern.
|
|
|
|
// The function modules must be marked and the codeword bits must be drawn
|
|
|
|
// before masking. Due to the arithmetic of XOR, calling applyMask() with
|
|
|
|
// the same mask value a second time will undo the mask. A final well-formed
|
|
|
|
// QR Code symbol needs exactly one (not zero, two, etc.) mask applied.
|
2018-06-23 16:16:04 +00:00
|
|
|
private applyMask(mask: int): void {
|
|
|
|
if (mask < 0 || mask > 7)
|
|
|
|
throw "Mask value out of range";
|
|
|
|
for (let y = 0; y < this.size; y++) {
|
|
|
|
for (let x = 0; x < this.size; x++) {
|
|
|
|
let invert: boolean;
|
|
|
|
switch (mask) {
|
|
|
|
case 0: invert = (x + y) % 2 == 0; break;
|
|
|
|
case 1: invert = y % 2 == 0; break;
|
|
|
|
case 2: invert = x % 3 == 0; break;
|
|
|
|
case 3: invert = (x + y) % 3 == 0; break;
|
|
|
|
case 4: invert = (Math.floor(x / 3) + Math.floor(y / 2)) % 2 == 0; break;
|
|
|
|
case 5: invert = x * y % 2 + x * y % 3 == 0; break;
|
|
|
|
case 6: invert = (x * y % 2 + x * y % 3) % 2 == 0; break;
|
|
|
|
case 7: invert = ((x + y) % 2 + x * y % 3) % 2 == 0; break;
|
|
|
|
default: throw "Assertion error";
|
|
|
|
}
|
2018-09-17 03:59:20 +00:00
|
|
|
if (!this.isFunction[y][x] && invert)
|
2018-06-23 16:16:04 +00:00
|
|
|
this.modules[y][x] = !this.modules[y][x];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Calculates and returns the penalty score based on state of this QR Code's current modules.
|
|
|
|
// This is used by the automatic mask choice algorithm to find the mask pattern that yields the lowest score.
|
|
|
|
private getPenaltyScore(): int {
|
|
|
|
let result: int = 0;
|
|
|
|
|
|
|
|
// Adjacent modules in row having same color
|
|
|
|
for (let y = 0; y < this.size; y++) {
|
|
|
|
for (let x = 0, runX = 0, colorX = false; x < this.size; x++) {
|
|
|
|
if (x == 0 || this.modules[y][x] != colorX) {
|
|
|
|
colorX = this.modules[y][x];
|
|
|
|
runX = 1;
|
|
|
|
} else {
|
|
|
|
runX++;
|
|
|
|
if (runX == 5)
|
|
|
|
result += QrCode.PENALTY_N1;
|
|
|
|
else if (runX > 5)
|
|
|
|
result++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Adjacent modules in column having same color
|
|
|
|
for (let x = 0; x < this.size; x++) {
|
|
|
|
for (let y = 0, runY = 0, colorY = false; y < this.size; y++) {
|
|
|
|
if (y == 0 || this.modules[y][x] != colorY) {
|
|
|
|
colorY = this.modules[y][x];
|
|
|
|
runY = 1;
|
|
|
|
} else {
|
|
|
|
runY++;
|
|
|
|
if (runY == 5)
|
|
|
|
result += QrCode.PENALTY_N1;
|
|
|
|
else if (runY > 5)
|
|
|
|
result++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 2*2 blocks of modules having same color
|
|
|
|
for (let y = 0; y < this.size - 1; y++) {
|
|
|
|
for (let x = 0; x < this.size - 1; x++) {
|
|
|
|
let color: boolean = this.modules[y][x];
|
|
|
|
if ( color == this.modules[y][x + 1] &&
|
|
|
|
color == this.modules[y + 1][x] &&
|
|
|
|
color == this.modules[y + 1][x + 1])
|
|
|
|
result += QrCode.PENALTY_N2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finder-like pattern in rows
|
|
|
|
for (let y = 0; y < this.size; y++) {
|
|
|
|
for (let x = 0, bits = 0; x < this.size; x++) {
|
2018-08-31 19:50:40 +00:00
|
|
|
bits = ((bits << 1) & 0b11111111111) | (this.modules[y][x] ? 1 : 0);
|
|
|
|
if (x >= 10 && (bits == 0b00001011101 || bits == 0b10111010000)) // Needs 11 bits accumulated
|
2018-06-23 16:16:04 +00:00
|
|
|
result += QrCode.PENALTY_N3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Finder-like pattern in columns
|
|
|
|
for (let x = 0; x < this.size; x++) {
|
|
|
|
for (let y = 0, bits = 0; y < this.size; y++) {
|
2018-08-31 19:50:40 +00:00
|
|
|
bits = ((bits << 1) & 0b11111111111) | (this.modules[y][x] ? 1 : 0);
|
|
|
|
if (y >= 10 && (bits == 0b00001011101 || bits == 0b10111010000)) // Needs 11 bits accumulated
|
2018-06-23 16:16:04 +00:00
|
|
|
result += QrCode.PENALTY_N3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Balance of black and white modules
|
|
|
|
let black: int = 0;
|
2018-08-31 17:03:51 +00:00
|
|
|
for (let row of this.modules) {
|
|
|
|
for (let color of row) {
|
2018-06-23 16:16:04 +00:00
|
|
|
if (color)
|
|
|
|
black++;
|
2018-08-31 17:03:51 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-26 03:55:03 +00:00
|
|
|
let total: int = this.size * this.size; // Note that size is odd, so black/total != 1/2
|
2018-08-26 03:20:12 +00:00
|
|
|
// Compute the smallest integer k >= 0 such that (45-5k)% <= black/total <= (55+5k)%
|
|
|
|
let k: int = Math.ceil(Math.abs(black * 20 - total * 10) / total) - 1;
|
|
|
|
result += k * QrCode.PENALTY_N4;
|
2018-06-23 16:16:04 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-05 00:30:10 +00:00
|
|
|
/*-- Private helper functions --*/
|
2018-06-23 16:16:04 +00:00
|
|
|
|
2018-08-28 19:10:47 +00:00
|
|
|
// Returns an ascending list of positions of alignment patterns for this version number.
|
|
|
|
// Each position is in the range [0,177), and are used on both the x and y axes.
|
|
|
|
// This could be implemented as lookup table of 40 variable-length lists of integers.
|
|
|
|
private getAlignmentPatternPositions(): Array<int> {
|
|
|
|
if (this.version == 1)
|
2018-06-23 16:16:04 +00:00
|
|
|
return [];
|
|
|
|
else {
|
2018-08-28 19:10:47 +00:00
|
|
|
let numAlign: int = Math.floor(this.version / 7) + 2;
|
|
|
|
let step: int = (this.version == 32) ? 26 :
|
|
|
|
Math.ceil((this.size - 13) / (numAlign*2 - 2)) * 2;
|
2018-06-23 16:16:04 +00:00
|
|
|
let result: Array<int> = [6];
|
2018-08-28 19:10:47 +00:00
|
|
|
for (let i = 0, pos = this.size - 7; i < numAlign - 1; i++, pos -= step)
|
2018-06-23 16:16:04 +00:00
|
|
|
result.splice(1, 0, pos);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Returns the number of data bits that can be stored in a QR Code of the given version number, after
|
|
|
|
// all function modules are excluded. This includes remainder bits, so it might not be a multiple of 8.
|
|
|
|
// The result is in the range [208, 29648]. This could be implemented as a 40-entry lookup table.
|
|
|
|
private static getNumRawDataModules(ver: int): int {
|
|
|
|
if (ver < QrCode.MIN_VERSION || ver > QrCode.MAX_VERSION)
|
|
|
|
throw "Version number out of range";
|
|
|
|
let result: int = (16 * ver + 128) * ver + 64;
|
|
|
|
if (ver >= 2) {
|
|
|
|
let numAlign: int = Math.floor(ver / 7) + 2;
|
|
|
|
result -= (25 * numAlign - 10) * numAlign - 55;
|
|
|
|
if (ver >= 7)
|
2018-08-28 03:53:17 +00:00
|
|
|
result -= 36;
|
2018-06-23 16:16:04 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Returns the number of 8-bit data (i.e. not error correction) codewords contained in any
|
|
|
|
// QR Code of the given version number and error correction level, with remainder bits discarded.
|
|
|
|
// This stateless pure function could be implemented as a (40*4)-cell lookup table.
|
2018-08-27 03:10:17 +00:00
|
|
|
private static getNumDataCodewords(ver: int, ecl: QrCode.Ecc): int {
|
2018-06-23 16:16:04 +00:00
|
|
|
return Math.floor(QrCode.getNumRawDataModules(ver) / 8) -
|
2018-08-31 17:23:16 +00:00
|
|
|
QrCode.ECC_CODEWORDS_PER_BLOCK [ecl.ordinal][ver] *
|
2018-08-27 03:13:48 +00:00
|
|
|
QrCode.NUM_ERROR_CORRECTION_BLOCKS[ecl.ordinal][ver];
|
2018-06-23 16:16:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-04 19:40:43 +00:00
|
|
|
/*-- Constants and tables --*/
|
2018-06-23 16:16:04 +00:00
|
|
|
|
2018-08-26 03:45:39 +00:00
|
|
|
public static readonly MIN_VERSION: int = 1;
|
|
|
|
public static readonly MAX_VERSION: int = 40;
|
2018-06-23 16:16:04 +00:00
|
|
|
|
|
|
|
// For use in getPenaltyScore(), when evaluating which mask is best.
|
2018-08-31 17:57:57 +00:00
|
|
|
private static readonly PENALTY_N1: int = 3;
|
|
|
|
private static readonly PENALTY_N2: int = 3;
|
2018-08-26 03:45:39 +00:00
|
|
|
private static readonly PENALTY_N3: int = 40;
|
|
|
|
private static readonly PENALTY_N4: int = 10;
|
2018-06-23 16:16:04 +00:00
|
|
|
|
2018-08-27 03:13:48 +00:00
|
|
|
private static readonly ECC_CODEWORDS_PER_BLOCK: Array<Array<int>> = [
|
|
|
|
// Version: (note that index 0 is for padding, and is set to an illegal value)
|
|
|
|
//0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40 Error correction level
|
|
|
|
[-1, 7, 10, 15, 20, 26, 18, 20, 24, 30, 18, 20, 24, 26, 30, 22, 24, 28, 30, 28, 28, 28, 28, 30, 30, 26, 28, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30], // Low
|
|
|
|
[-1, 10, 16, 26, 18, 24, 16, 18, 22, 22, 26, 30, 22, 22, 24, 24, 28, 28, 26, 26, 26, 26, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28], // Medium
|
|
|
|
[-1, 13, 22, 18, 26, 18, 24, 18, 22, 20, 24, 28, 26, 24, 20, 30, 24, 28, 28, 26, 30, 28, 30, 30, 30, 30, 28, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30], // Quartile
|
|
|
|
[-1, 17, 28, 22, 16, 22, 28, 26, 26, 24, 28, 24, 28, 22, 24, 24, 30, 28, 28, 26, 28, 30, 24, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30], // High
|
|
|
|
];
|
|
|
|
|
|
|
|
private static readonly NUM_ERROR_CORRECTION_BLOCKS: Array<Array<int>> = [
|
|
|
|
// Version: (note that index 0 is for padding, and is set to an illegal value)
|
|
|
|
//0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40 Error correction level
|
|
|
|
[-1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 4, 4, 4, 4, 4, 6, 6, 6, 6, 7, 8, 8, 9, 9, 10, 12, 12, 12, 13, 14, 15, 16, 17, 18, 19, 19, 20, 21, 22, 24, 25], // Low
|
|
|
|
[-1, 1, 1, 1, 2, 2, 4, 4, 4, 5, 5, 5, 8, 9, 9, 10, 10, 11, 13, 14, 16, 17, 17, 18, 20, 21, 23, 25, 26, 28, 29, 31, 33, 35, 37, 38, 40, 43, 45, 47, 49], // Medium
|
|
|
|
[-1, 1, 1, 2, 2, 4, 4, 6, 6, 8, 8, 8, 10, 12, 16, 12, 17, 16, 18, 21, 20, 23, 23, 25, 27, 29, 34, 34, 35, 38, 40, 43, 45, 48, 51, 53, 56, 59, 62, 65, 68], // Quartile
|
|
|
|
[-1, 1, 1, 2, 4, 4, 4, 5, 6, 8, 8, 11, 11, 16, 16, 18, 16, 19, 21, 25, 25, 25, 34, 30, 32, 35, 37, 40, 42, 45, 48, 51, 54, 57, 60, 63, 66, 70, 74, 77, 81], // High
|
|
|
|
];
|
|
|
|
|
2018-06-23 16:16:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Returns true iff the i'th bit of x is set to 1.
|
|
|
|
function getBit(x: int, i: int): boolean {
|
|
|
|
return ((x >>> i) & 1) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*---- Data segment class ----*/
|
|
|
|
|
|
|
|
/*
|
2018-08-28 21:08:00 +00:00
|
|
|
* Represents a segment of character data, binary data, or control data
|
|
|
|
* to be put into a QR Code symbol. Instances of this class are immutable.
|
2018-06-23 16:16:04 +00:00
|
|
|
* This segment class imposes no length restrictions, but QR Codes have restrictions.
|
|
|
|
* Even in the most favorable conditions, a QR Code can only hold 7089 characters of data.
|
|
|
|
* Any segment longer than this is meaningless for the purpose of generating QR Codes.
|
|
|
|
*/
|
|
|
|
export class QrSegment {
|
|
|
|
|
2018-10-04 19:56:07 +00:00
|
|
|
/*-- Static factory functions (mid level) --*/
|
2018-06-23 16:16:04 +00:00
|
|
|
|
|
|
|
// Returns a segment representing the given binary data encoded in byte mode.
|
|
|
|
public static makeBytes(data: Array<byte>): QrSegment {
|
|
|
|
let bb = new BitBuffer();
|
2018-08-31 17:03:51 +00:00
|
|
|
for (let b of data)
|
|
|
|
bb.appendBits(b, 8);
|
2018-08-27 03:10:17 +00:00
|
|
|
return new QrSegment(QrSegment.Mode.BYTE, data.length, bb);
|
2018-06-23 16:16:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Returns a segment representing the given string of decimal digits encoded in numeric mode.
|
|
|
|
public static makeNumeric(digits: string): QrSegment {
|
|
|
|
if (!this.NUMERIC_REGEX.test(digits))
|
|
|
|
throw "String contains non-numeric characters";
|
|
|
|
let bb = new BitBuffer();
|
2018-08-31 17:54:39 +00:00
|
|
|
for (let i = 0; i < digits.length; ) { // Consume up to 3 digits per iteration
|
|
|
|
let n: int = Math.min(digits.length - i, 3);
|
|
|
|
bb.appendBits(parseInt(digits.substr(i, n), 10), n * 3 + 1);
|
|
|
|
i += n;
|
|
|
|
}
|
2018-08-27 03:10:17 +00:00
|
|
|
return new QrSegment(QrSegment.Mode.NUMERIC, digits.length, bb);
|
2018-06-23 16:16:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Returns a segment representing the given text string encoded in alphanumeric mode.
|
|
|
|
// The characters allowed are: 0 to 9, A to Z (uppercase only), space,
|
|
|
|
// dollar, percent, asterisk, plus, hyphen, period, slash, colon.
|
|
|
|
public static makeAlphanumeric(text: string): QrSegment {
|
|
|
|
if (!this.ALPHANUMERIC_REGEX.test(text))
|
|
|
|
throw "String contains unencodable characters in alphanumeric mode";
|
|
|
|
let bb = new BitBuffer();
|
|
|
|
let i: int;
|
|
|
|
for (i = 0; i + 2 <= text.length; i += 2) { // Process groups of 2
|
|
|
|
let temp: int = QrSegment.ALPHANUMERIC_CHARSET.indexOf(text.charAt(i)) * 45;
|
|
|
|
temp += QrSegment.ALPHANUMERIC_CHARSET.indexOf(text.charAt(i + 1));
|
|
|
|
bb.appendBits(temp, 11);
|
|
|
|
}
|
|
|
|
if (i < text.length) // 1 character remaining
|
|
|
|
bb.appendBits(QrSegment.ALPHANUMERIC_CHARSET.indexOf(text.charAt(i)), 6);
|
2018-08-27 03:10:17 +00:00
|
|
|
return new QrSegment(QrSegment.Mode.ALPHANUMERIC, text.length, bb);
|
2018-06-23 16:16:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Returns a new mutable list of zero or more segments to represent the given Unicode text string.
|
|
|
|
// The result may use various segment modes and switch modes to optimize the length of the bit stream.
|
|
|
|
public static makeSegments(text: string): Array<QrSegment> {
|
|
|
|
// Select the most efficient segment encoding automatically
|
|
|
|
if (text == "")
|
|
|
|
return [];
|
|
|
|
else if (this.NUMERIC_REGEX.test(text))
|
|
|
|
return [QrSegment.makeNumeric(text)];
|
|
|
|
else if (this.ALPHANUMERIC_REGEX.test(text))
|
|
|
|
return [QrSegment.makeAlphanumeric(text)];
|
|
|
|
else
|
|
|
|
return [QrSegment.makeBytes(QrSegment.toUtf8ByteArray(text))];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Returns a segment representing an Extended Channel Interpretation
|
|
|
|
// (ECI) designator with the given assignment value.
|
|
|
|
public static makeEci(assignVal: int): QrSegment {
|
|
|
|
let bb = new BitBuffer();
|
2018-10-04 19:26:21 +00:00
|
|
|
if (assignVal < 0)
|
|
|
|
throw "ECI assignment value out of range";
|
|
|
|
else if (assignVal < (1 << 7))
|
2018-06-23 16:16:04 +00:00
|
|
|
bb.appendBits(assignVal, 8);
|
2018-10-04 19:26:21 +00:00
|
|
|
else if (assignVal < (1 << 14)) {
|
2018-06-23 16:16:04 +00:00
|
|
|
bb.appendBits(2, 2);
|
|
|
|
bb.appendBits(assignVal, 14);
|
2018-10-04 19:26:21 +00:00
|
|
|
} else if (assignVal < 1000000) {
|
2018-06-23 16:16:04 +00:00
|
|
|
bb.appendBits(6, 3);
|
|
|
|
bb.appendBits(assignVal, 21);
|
|
|
|
} else
|
|
|
|
throw "ECI assignment value out of range";
|
2018-08-27 03:10:17 +00:00
|
|
|
return new QrSegment(QrSegment.Mode.ECI, 0, bb);
|
2018-06-23 16:16:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-04 19:56:07 +00:00
|
|
|
/*-- Constructor (low level) and fields --*/
|
2018-06-23 16:16:04 +00:00
|
|
|
|
2018-08-28 21:08:00 +00:00
|
|
|
// Creates a new QR Code segment with the given parameters and data.
|
2018-10-05 00:21:12 +00:00
|
|
|
// The character count (numChars) must agree with the mode and the bit buffer length,
|
|
|
|
// but the constraint isn't checked. The given bit buffer is cloned and stored.
|
2018-08-31 17:41:20 +00:00
|
|
|
public constructor(
|
|
|
|
// The mode indicator for this segment.
|
|
|
|
public readonly mode: QrSegment.Mode,
|
|
|
|
|
2018-10-05 00:21:12 +00:00
|
|
|
// The length of this segment's unencoded data, measured in characters for
|
|
|
|
// numeric/alphanumeric/kanji mode, bytes for byte mode, and 0 for ECI mode.
|
|
|
|
// Always zero or positive.
|
2018-08-31 17:41:20 +00:00
|
|
|
public readonly numChars: int,
|
|
|
|
|
|
|
|
private readonly bitData: Array<bit>) {
|
|
|
|
|
2018-06-23 16:16:04 +00:00
|
|
|
if (numChars < 0)
|
|
|
|
throw "Invalid argument";
|
|
|
|
this.bitData = bitData.slice(); // Make defensive copy
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*-- Methods --*/
|
|
|
|
|
|
|
|
// Returns a copy of all bits, which is an array of 0s and 1s.
|
|
|
|
public getBits(): Array<bit> {
|
|
|
|
return this.bitData.slice(); // Make defensive copy
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-28 19:40:35 +00:00
|
|
|
// (Package-private) Calculates and returns the number of bits needed to encode the given segments at
|
|
|
|
// the given version. The result is infinity if a segment has too many characters to fit its length field.
|
2018-08-28 16:20:01 +00:00
|
|
|
public static getTotalBits(segs: Array<QrSegment>, version: int): number {
|
|
|
|
let result: number = 0;
|
2018-08-31 17:00:52 +00:00
|
|
|
for (let seg of segs) {
|
2018-06-23 16:16:04 +00:00
|
|
|
let ccbits: int = seg.mode.numCharCountBits(version);
|
|
|
|
if (seg.numChars >= (1 << ccbits))
|
2018-08-28 16:36:07 +00:00
|
|
|
return Infinity; // The segment's length doesn't fit the field's bit width
|
2018-06-23 16:16:04 +00:00
|
|
|
result += 4 + ccbits + seg.getBits().length;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Returns a new array of bytes representing the given string encoded in UTF-8.
|
|
|
|
private static toUtf8ByteArray(str: string): Array<byte> {
|
|
|
|
str = encodeURI(str);
|
|
|
|
let result: Array<byte> = [];
|
|
|
|
for (let i = 0; i < str.length; i++) {
|
|
|
|
if (str.charAt(i) != "%")
|
|
|
|
result.push(str.charCodeAt(i));
|
|
|
|
else {
|
|
|
|
result.push(parseInt(str.substr(i + 1, 2), 16));
|
|
|
|
i += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*-- Constants --*/
|
|
|
|
|
|
|
|
// Can test whether a string is encodable in numeric mode (such as by using QrSegment.makeNumeric()).
|
2018-08-26 03:45:39 +00:00
|
|
|
public static readonly NUMERIC_REGEX: RegExp = /^[0-9]*$/;
|
2018-06-23 16:16:04 +00:00
|
|
|
|
|
|
|
// Can test whether a string is encodable in alphanumeric mode (such as by using QrSegment.makeAlphanumeric()).
|
2018-08-26 03:45:39 +00:00
|
|
|
public static readonly ALPHANUMERIC_REGEX: RegExp = /^[A-Z0-9 $%*+.\/:-]*$/;
|
2018-06-23 16:16:04 +00:00
|
|
|
|
|
|
|
// The set of all legal characters in alphanumeric mode, where each character value maps to the index in the string.
|
2018-08-26 03:45:39 +00:00
|
|
|
private static readonly ALPHANUMERIC_CHARSET: string = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ $%*+-./:";
|
2018-06-23 16:16:04 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*---- Private helper classes ----*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Computes the Reed-Solomon error correction codewords for a sequence of data codewords
|
|
|
|
* at a given degree. Objects are immutable, and the state only depends on the degree.
|
|
|
|
* This class exists because each data block in a QR Code shares the same the divisor polynomial.
|
|
|
|
*/
|
|
|
|
class ReedSolomonGenerator {
|
|
|
|
|
|
|
|
// Coefficients of the divisor polynomial, stored from highest to lowest power, excluding the leading term which
|
|
|
|
// is always 1. For example the polynomial x^3 + 255x^2 + 8x + 93 is stored as the uint8 array {255, 8, 93}.
|
|
|
|
private readonly coefficients: Array<byte> = [];
|
|
|
|
|
|
|
|
|
|
|
|
// Creates a Reed-Solomon ECC generator for the given degree. This could be implemented
|
|
|
|
// as a lookup table over all possible parameter values, instead of as an algorithm.
|
|
|
|
public constructor(degree: int) {
|
|
|
|
if (degree < 1 || degree > 255)
|
|
|
|
throw "Degree out of range";
|
|
|
|
let coefs = this.coefficients;
|
|
|
|
|
|
|
|
// Start with the monomial x^0
|
|
|
|
for (let i = 0; i < degree - 1; i++)
|
|
|
|
coefs.push(0);
|
|
|
|
coefs.push(1);
|
|
|
|
|
|
|
|
// Compute the product polynomial (x - r^0) * (x - r^1) * (x - r^2) * ... * (x - r^{degree-1}),
|
|
|
|
// drop the highest term, and store the rest of the coefficients in order of descending powers.
|
|
|
|
// Note that r = 0x02, which is a generator element of this field GF(2^8/0x11D).
|
|
|
|
let root = 1;
|
|
|
|
for (let i = 0; i < degree; i++) {
|
|
|
|
// Multiply the current product by (x - r^i)
|
|
|
|
for (let j = 0; j < coefs.length; j++) {
|
|
|
|
coefs[j] = ReedSolomonGenerator.multiply(coefs[j], root);
|
|
|
|
if (j + 1 < coefs.length)
|
|
|
|
coefs[j] ^= coefs[j + 1];
|
|
|
|
}
|
|
|
|
root = ReedSolomonGenerator.multiply(root, 0x02);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Computes and returns the Reed-Solomon error correction codewords for the given
|
|
|
|
// sequence of data codewords. The returned object is always a new byte array.
|
|
|
|
// This method does not alter this object's state (because it is immutable).
|
|
|
|
public getRemainder(data: Array<byte>): Array<byte> {
|
|
|
|
// Compute the remainder by performing polynomial division
|
|
|
|
let result: Array<byte> = this.coefficients.map(_ => 0);
|
2018-08-31 17:03:51 +00:00
|
|
|
for (let b of data) {
|
2018-06-23 16:16:04 +00:00
|
|
|
let factor: byte = b ^ (result.shift() as int);
|
|
|
|
result.push(0);
|
|
|
|
for (let i = 0; i < result.length; i++)
|
|
|
|
result[i] ^= ReedSolomonGenerator.multiply(this.coefficients[i], factor);
|
2018-08-31 17:03:51 +00:00
|
|
|
}
|
2018-06-23 16:16:04 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Returns the product of the two given field elements modulo GF(2^8/0x11D). The arguments and result
|
|
|
|
// are unsigned 8-bit integers. This could be implemented as a lookup table of 256*256 entries of uint8.
|
|
|
|
private static multiply(x: byte, y: byte): byte {
|
|
|
|
if (x >>> 8 != 0 || y >>> 8 != 0)
|
|
|
|
throw "Byte out of range";
|
|
|
|
// Russian peasant multiplication
|
|
|
|
let z: int = 0;
|
|
|
|
for (let i = 7; i >= 0; i--) {
|
|
|
|
z = (z << 1) ^ ((z >>> 7) * 0x11D);
|
|
|
|
z ^= ((y >>> i) & 1) * x;
|
|
|
|
}
|
|
|
|
if (z >>> 8 != 0)
|
|
|
|
throw "Assertion error";
|
|
|
|
return z as byte;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2018-10-02 00:21:19 +00:00
|
|
|
* An appendable sequence of bits (0s and 1s). The implicit constructor creates an empty bit buffer (length 0).
|
2018-06-23 16:16:04 +00:00
|
|
|
*/
|
|
|
|
class BitBuffer extends Array<bit> {
|
|
|
|
|
|
|
|
// Packs this buffer's bits into bytes in big endian,
|
|
|
|
// padding with '0' bit values, and returns the new array.
|
|
|
|
public getBytes(): Array<byte> {
|
|
|
|
let result: Array<byte> = [];
|
|
|
|
while (result.length * 8 < this.length)
|
|
|
|
result.push(0);
|
|
|
|
this.forEach((b: bit, i: int) =>
|
|
|
|
result[i >>> 3] |= b << (7 - (i & 7)));
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-04 20:07:10 +00:00
|
|
|
// Appends the given number of low bits of the given value to
|
|
|
|
// this sequence. Requires 0 <= len <= 31 and 0 <= val < 2^len.
|
2018-06-23 16:16:04 +00:00
|
|
|
public appendBits(val: int, len: int): void {
|
|
|
|
if (len < 0 || len > 31 || val >>> len != 0)
|
|
|
|
throw "Value out of range";
|
|
|
|
for (let i = len - 1; i >= 0; i--) // Append bit by bit
|
|
|
|
this.push((val >>> i) & 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2018-08-27 03:10:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*---- Public helper enumeration ----*/
|
|
|
|
|
|
|
|
namespace qrcodegen.QrCode {
|
|
|
|
|
|
|
|
type int = number;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Represents the error correction level used in a QR Code symbol.
|
|
|
|
*/
|
|
|
|
export class Ecc {
|
|
|
|
|
|
|
|
/*-- Constants --*/
|
|
|
|
|
|
|
|
public static readonly LOW = new Ecc(0, 1);
|
|
|
|
public static readonly MEDIUM = new Ecc(1, 0);
|
|
|
|
public static readonly QUARTILE = new Ecc(2, 3);
|
|
|
|
public static readonly HIGH = new Ecc(3, 2);
|
|
|
|
|
|
|
|
|
2018-08-31 17:41:20 +00:00
|
|
|
/*-- Constructor and fields --*/
|
2018-08-27 03:10:17 +00:00
|
|
|
|
2018-08-31 17:41:20 +00:00
|
|
|
private constructor(
|
|
|
|
// In the range 0 to 3 (unsigned 2-bit integer).
|
|
|
|
public readonly ordinal: int,
|
|
|
|
// (Package-private) In the range 0 to 3 (unsigned 2-bit integer).
|
|
|
|
public readonly formatBits: int) {}
|
2018-08-27 03:10:17 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*---- Public helper enumeration ----*/
|
|
|
|
|
|
|
|
namespace qrcodegen.QrSegment {
|
|
|
|
|
|
|
|
type int = number;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Represents the mode field of a segment. Immutable.
|
|
|
|
*/
|
|
|
|
export class Mode {
|
|
|
|
|
|
|
|
/*-- Constants --*/
|
|
|
|
|
|
|
|
public static readonly NUMERIC = new Mode(0x1, [10, 12, 14]);
|
|
|
|
public static readonly ALPHANUMERIC = new Mode(0x2, [ 9, 11, 13]);
|
|
|
|
public static readonly BYTE = new Mode(0x4, [ 8, 16, 16]);
|
|
|
|
public static readonly KANJI = new Mode(0x8, [ 8, 10, 12]);
|
|
|
|
public static readonly ECI = new Mode(0x7, [ 0, 0, 0]);
|
|
|
|
|
|
|
|
|
2018-08-31 17:41:20 +00:00
|
|
|
/*-- Constructor and fields --*/
|
2018-08-27 03:10:17 +00:00
|
|
|
|
2018-08-31 17:41:20 +00:00
|
|
|
private constructor(
|
|
|
|
// The mode indicator bits, which is a uint4 value (range 0 to 15).
|
|
|
|
public readonly modeBits: int,
|
2018-10-04 22:16:25 +00:00
|
|
|
// Number of character count bits for three different version ranges.
|
2018-08-31 17:41:20 +00:00
|
|
|
private readonly numBitsCharCount: [int,int,int]) {}
|
2018-08-27 03:10:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*-- Method --*/
|
|
|
|
|
2018-10-04 22:16:25 +00:00
|
|
|
// (Package-private) Returns the bit width of the character count field for a segment in
|
|
|
|
// this mode in a QR Code at the given version number. The result is in the range [0, 16].
|
2018-08-27 03:10:17 +00:00
|
|
|
public numCharCountBits(ver: int): int {
|
2018-08-28 20:11:05 +00:00
|
|
|
return this.numBitsCharCount[Math.floor((ver + 7) / 17)];
|
2018-08-27 03:10:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|