5742 lines
180 KiB
JavaScript
5742 lines
180 KiB
JavaScript
// Source: public/src/js/ios-imagefile-megapixel/megapix-image.js
|
|
/**
|
|
* Mega pixel image rendering library for iOS6 Safari
|
|
*
|
|
* Fixes iOS6 Safari's image file rendering issue for large size image (over mega-pixel),
|
|
* which causes unexpected subsampling when drawing it in canvas.
|
|
* By using this library, you can safely render the image with proper stretching.
|
|
*
|
|
* Copyright (c) 2012 Shinichi Tomita <shinichi.tomita@gmail.com>
|
|
* Released under the MIT license
|
|
*/
|
|
(function() {
|
|
|
|
/**
|
|
* Detect subsampling in loaded image.
|
|
* In iOS, larger images than 2M pixels may be subsampled in rendering.
|
|
*/
|
|
function detectSubsampling(img) {
|
|
var iw = img.naturalWidth, ih = img.naturalHeight;
|
|
if (iw * ih > 1024 * 1024) { // subsampling may happen over megapixel image
|
|
var canvas = document.createElement('canvas');
|
|
canvas.width = canvas.height = 1;
|
|
var ctx = canvas.getContext('2d');
|
|
ctx.drawImage(img, -iw + 1, 0);
|
|
// subsampled image becomes half smaller in rendering size.
|
|
// check alpha channel value to confirm image is covering edge pixel or not.
|
|
// if alpha value is 0 image is not covering, hence subsampled.
|
|
return ctx.getImageData(0, 0, 1, 1).data[3] === 0;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Detecting vertical squash in loaded image.
|
|
* Fixes a bug which squash image vertically while drawing into canvas for some images.
|
|
*/
|
|
function detectVerticalSquash(img, iw, ih) {
|
|
var canvas = document.createElement('canvas');
|
|
canvas.width = 1;
|
|
canvas.height = ih;
|
|
var ctx = canvas.getContext('2d');
|
|
ctx.drawImage(img, 0, 0);
|
|
var data = ctx.getImageData(0, 0, 1, ih).data;
|
|
// search image edge pixel position in case it is squashed vertically.
|
|
var sy = 0;
|
|
var ey = ih;
|
|
var py = ih;
|
|
while (py > sy) {
|
|
var alpha = data[(py - 1) * 4 + 3];
|
|
if (alpha === 0) {
|
|
ey = py;
|
|
} else {
|
|
sy = py;
|
|
}
|
|
py = (ey + sy) >> 1;
|
|
}
|
|
var ratio = (py / ih);
|
|
return (ratio===0)?1:ratio;
|
|
}
|
|
|
|
/**
|
|
* Rendering image element (with resizing) and get its data URL
|
|
*/
|
|
function renderImageToDataURL(img, options, doSquash) {
|
|
var canvas = document.createElement('canvas');
|
|
renderImageToCanvas(img, canvas, options, doSquash);
|
|
return canvas.toDataURL("image/jpeg", options.quality || 0.8);
|
|
}
|
|
|
|
/**
|
|
* Rendering image element (with resizing) into the canvas element
|
|
*/
|
|
function renderImageToCanvas(img, canvas, options, doSquash) {
|
|
var iw = img.naturalWidth, ih = img.naturalHeight;
|
|
var width = options.width, height = options.height;
|
|
var ctx = canvas.getContext('2d');
|
|
ctx.save();
|
|
transformCoordinate(canvas, width, height, options.orientation);
|
|
var subsampled = detectSubsampling(img);
|
|
if (subsampled) {
|
|
iw /= 2;
|
|
ih /= 2;
|
|
}
|
|
var d = 1024; // size of tiling canvas
|
|
var tmpCanvas = document.createElement('canvas');
|
|
tmpCanvas.width = tmpCanvas.height = d;
|
|
var tmpCtx = tmpCanvas.getContext('2d');
|
|
var vertSquashRatio = doSquash ? detectVerticalSquash(img, iw, ih) : 1;
|
|
var dw = Math.ceil(d * width / iw);
|
|
var dh = Math.ceil(d * height / ih / vertSquashRatio);
|
|
var sy = 0;
|
|
var dy = 0;
|
|
while (sy < ih) {
|
|
var sx = 0;
|
|
var dx = 0;
|
|
while (sx < iw) {
|
|
tmpCtx.clearRect(0, 0, d, d);
|
|
tmpCtx.drawImage(img, -sx, -sy);
|
|
ctx.drawImage(tmpCanvas, 0, 0, d, d, dx, dy, dw, dh);
|
|
sx += d;
|
|
dx += dw;
|
|
}
|
|
sy += d;
|
|
dy += dh;
|
|
}
|
|
ctx.restore();
|
|
tmpCanvas = tmpCtx = null;
|
|
}
|
|
|
|
/**
|
|
* Transform canvas coordination according to specified frame size and orientation
|
|
* Orientation value is from EXIF tag
|
|
*/
|
|
function transformCoordinate(canvas, width, height, orientation) {
|
|
switch (orientation) {
|
|
case 5:
|
|
case 6:
|
|
case 7:
|
|
case 8:
|
|
canvas.width = height;
|
|
canvas.height = width;
|
|
break;
|
|
default:
|
|
canvas.width = width;
|
|
canvas.height = height;
|
|
}
|
|
var ctx = canvas.getContext('2d');
|
|
switch (orientation) {
|
|
case 2:
|
|
// horizontal flip
|
|
ctx.translate(width, 0);
|
|
ctx.scale(-1, 1);
|
|
break;
|
|
case 3:
|
|
// 180 rotate left
|
|
ctx.translate(width, height);
|
|
ctx.rotate(Math.PI);
|
|
break;
|
|
case 4:
|
|
// vertical flip
|
|
ctx.translate(0, height);
|
|
ctx.scale(1, -1);
|
|
break;
|
|
case 5:
|
|
// vertical flip + 90 rotate right
|
|
ctx.rotate(0.5 * Math.PI);
|
|
ctx.scale(1, -1);
|
|
break;
|
|
case 6:
|
|
// 90 rotate right
|
|
ctx.rotate(0.5 * Math.PI);
|
|
ctx.translate(0, -height);
|
|
break;
|
|
case 7:
|
|
// horizontal flip + 90 rotate right
|
|
ctx.rotate(0.5 * Math.PI);
|
|
ctx.translate(width, -height);
|
|
ctx.scale(-1, 1);
|
|
break;
|
|
case 8:
|
|
// 90 rotate left
|
|
ctx.rotate(-0.5 * Math.PI);
|
|
ctx.translate(-width, 0);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* MegaPixImage class
|
|
*/
|
|
function MegaPixImage(srcImage) {
|
|
if (window.Blob && srcImage instanceof Blob) {
|
|
var img = new Image();
|
|
var URL = window.URL && window.URL.createObjectURL ? window.URL :
|
|
window.webkitURL && window.webkitURL.createObjectURL ? window.webkitURL :
|
|
null;
|
|
if (!URL) { throw Error("No createObjectURL function found to create blob url"); }
|
|
img.src = URL.createObjectURL(srcImage);
|
|
this.blob = srcImage;
|
|
srcImage = img;
|
|
}
|
|
if (!srcImage.naturalWidth && !srcImage.naturalHeight) {
|
|
var _this = this;
|
|
srcImage.onload = function() {
|
|
var listeners = _this.imageLoadListeners;
|
|
if (listeners) {
|
|
_this.imageLoadListeners = null;
|
|
for (var i=0, len=listeners.length; i<len; i++) {
|
|
listeners[i]();
|
|
}
|
|
}
|
|
};
|
|
this.imageLoadListeners = [];
|
|
}
|
|
this.srcImage = srcImage;
|
|
}
|
|
|
|
/**
|
|
* Rendering megapix image into specified target element
|
|
*/
|
|
MegaPixImage.prototype.render = function(target, options) {
|
|
if (this.imageLoadListeners) {
|
|
var _this = this;
|
|
this.imageLoadListeners.push(function() { _this.render(target, options) });
|
|
return;
|
|
}
|
|
options = options || {};
|
|
var imgWidth = this.srcImage.naturalWidth, imgHeight = this.srcImage.naturalHeight,
|
|
width = options.width, height = options.height,
|
|
maxWidth = options.maxWidth, maxHeight = options.maxHeight,
|
|
doSquash = !this.blob || this.blob.type === 'image/jpeg';
|
|
if (width && !height) {
|
|
height = (imgHeight * width / imgWidth) << 0;
|
|
} else if (height && !width) {
|
|
width = (imgWidth * height / imgHeight) << 0;
|
|
} else {
|
|
width = imgWidth;
|
|
height = imgHeight;
|
|
}
|
|
if (maxWidth && width > maxWidth) {
|
|
width = maxWidth;
|
|
height = (imgHeight * width / imgWidth) << 0;
|
|
}
|
|
if (maxHeight && height > maxHeight) {
|
|
height = maxHeight;
|
|
width = (imgWidth * height / imgHeight) << 0;
|
|
}
|
|
var opt = { width : width, height : height };
|
|
for (var k in options) opt[k] = options[k];
|
|
|
|
var tagName = target.tagName.toLowerCase();
|
|
if (tagName === 'img') {
|
|
target.src = renderImageToDataURL(this.srcImage, opt, doSquash);
|
|
} else if (tagName === 'canvas') {
|
|
renderImageToCanvas(this.srcImage, target, opt, doSquash);
|
|
}
|
|
if (typeof this.onrender === 'function') {
|
|
this.onrender(target);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Export class to global
|
|
*/
|
|
if (typeof define === 'function' && define.amd) {
|
|
define([], function() { return MegaPixImage; }); // for AMD loader
|
|
} else {
|
|
this.MegaPixImage = MegaPixImage;
|
|
}
|
|
|
|
})();
|
|
|
|
// Source: public/lib/qrcode-generator/js/qrcode.js
|
|
//---------------------------------------------------------------------
|
|
//
|
|
// QR Code Generator for JavaScript
|
|
//
|
|
// Copyright (c) 2009 Kazuhiko Arase
|
|
//
|
|
// URL: http://www.d-project.com/
|
|
//
|
|
// Licensed under the MIT license:
|
|
// http://www.opensource.org/licenses/mit-license.php
|
|
//
|
|
// The word 'QR Code' is registered trademark of
|
|
// DENSO WAVE INCORPORATED
|
|
// http://www.denso-wave.com/qrcode/faqpatent-e.html
|
|
//
|
|
//---------------------------------------------------------------------
|
|
|
|
var qrcode = function() {
|
|
|
|
//---------------------------------------------------------------------
|
|
// qrcode
|
|
//---------------------------------------------------------------------
|
|
|
|
/**
|
|
* qrcode
|
|
* @param typeNumber 1 to 10
|
|
* @param errorCorrectLevel 'L','M','Q','H'
|
|
*/
|
|
var qrcode = function(typeNumber, errorCorrectLevel) {
|
|
|
|
var PAD0 = 0xEC;
|
|
var PAD1 = 0x11;
|
|
|
|
var _typeNumber = typeNumber;
|
|
var _errorCorrectLevel = QRErrorCorrectLevel[errorCorrectLevel];
|
|
var _modules = null;
|
|
var _moduleCount = 0;
|
|
var _dataCache = null;
|
|
var _dataList = new Array();
|
|
|
|
var _this = {};
|
|
|
|
var makeImpl = function(test, maskPattern) {
|
|
|
|
_moduleCount = _typeNumber * 4 + 17;
|
|
_modules = function(moduleCount) {
|
|
var modules = new Array(moduleCount);
|
|
for (var row = 0; row < moduleCount; row += 1) {
|
|
modules[row] = new Array(moduleCount);
|
|
for (var col = 0; col < moduleCount; col += 1) {
|
|
modules[row][col] = null;
|
|
}
|
|
}
|
|
return modules;
|
|
}(_moduleCount);
|
|
|
|
setupPositionProbePattern(0, 0);
|
|
setupPositionProbePattern(_moduleCount - 7, 0);
|
|
setupPositionProbePattern(0, _moduleCount - 7);
|
|
setupPositionAdjustPattern();
|
|
setupTimingPattern();
|
|
setupTypeInfo(test, maskPattern);
|
|
|
|
if (_typeNumber >= 7) {
|
|
setupTypeNumber(test);
|
|
}
|
|
|
|
if (_dataCache == null) {
|
|
_dataCache = createData(_typeNumber, _errorCorrectLevel, _dataList);
|
|
}
|
|
|
|
mapData(_dataCache, maskPattern);
|
|
};
|
|
|
|
var setupPositionProbePattern = function(row, col) {
|
|
|
|
for (var r = -1; r <= 7; r += 1) {
|
|
|
|
if (row + r <= -1 || _moduleCount <= row + r) continue;
|
|
|
|
for (var c = -1; c <= 7; c += 1) {
|
|
|
|
if (col + c <= -1 || _moduleCount <= col + c) continue;
|
|
|
|
if ( (0 <= r && r <= 6 && (c == 0 || c == 6) )
|
|
|| (0 <= c && c <= 6 && (r == 0 || r == 6) )
|
|
|| (2 <= r && r <= 4 && 2 <= c && c <= 4) ) {
|
|
_modules[row + r][col + c] = true;
|
|
} else {
|
|
_modules[row + r][col + c] = false;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
var getBestMaskPattern = function() {
|
|
|
|
var minLostPoint = 0;
|
|
var pattern = 0;
|
|
|
|
for (var i = 0; i < 8; i += 1) {
|
|
|
|
makeImpl(true, i);
|
|
|
|
var lostPoint = QRUtil.getLostPoint(_this);
|
|
|
|
if (i == 0 || minLostPoint > lostPoint) {
|
|
minLostPoint = lostPoint;
|
|
pattern = i;
|
|
}
|
|
}
|
|
|
|
return pattern;
|
|
};
|
|
|
|
var setupTimingPattern = function() {
|
|
|
|
for (var r = 8; r < _moduleCount - 8; r += 1) {
|
|
if (_modules[r][6] != null) {
|
|
continue;
|
|
}
|
|
_modules[r][6] = (r % 2 == 0);
|
|
}
|
|
|
|
for (var c = 8; c < _moduleCount - 8; c += 1) {
|
|
if (_modules[6][c] != null) {
|
|
continue;
|
|
}
|
|
_modules[6][c] = (c % 2 == 0);
|
|
}
|
|
};
|
|
|
|
var setupPositionAdjustPattern = function() {
|
|
|
|
var pos = QRUtil.getPatternPosition(_typeNumber);
|
|
|
|
for (var i = 0; i < pos.length; i += 1) {
|
|
|
|
for (var j = 0; j < pos.length; j += 1) {
|
|
|
|
var row = pos[i];
|
|
var col = pos[j];
|
|
|
|
if (_modules[row][col] != null) {
|
|
continue;
|
|
}
|
|
|
|
for (var r = -2; r <= 2; r += 1) {
|
|
|
|
for (var c = -2; c <= 2; c += 1) {
|
|
|
|
if (r == -2 || r == 2 || c == -2 || c == 2
|
|
|| (r == 0 && c == 0) ) {
|
|
_modules[row + r][col + c] = true;
|
|
} else {
|
|
_modules[row + r][col + c] = false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
var setupTypeNumber = function(test) {
|
|
|
|
var bits = QRUtil.getBCHTypeNumber(_typeNumber);
|
|
|
|
for (var i = 0; i < 18; i += 1) {
|
|
var mod = (!test && ( (bits >> i) & 1) == 1);
|
|
_modules[Math.floor(i / 3)][i % 3 + _moduleCount - 8 - 3] = mod;
|
|
}
|
|
|
|
for (var i = 0; i < 18; i += 1) {
|
|
var mod = (!test && ( (bits >> i) & 1) == 1);
|
|
_modules[i % 3 + _moduleCount - 8 - 3][Math.floor(i / 3)] = mod;
|
|
}
|
|
};
|
|
|
|
var setupTypeInfo = function(test, maskPattern) {
|
|
|
|
var data = (_errorCorrectLevel << 3) | maskPattern;
|
|
var bits = QRUtil.getBCHTypeInfo(data);
|
|
|
|
// vertical
|
|
for (var i = 0; i < 15; i += 1) {
|
|
|
|
var mod = (!test && ( (bits >> i) & 1) == 1);
|
|
|
|
if (i < 6) {
|
|
_modules[i][8] = mod;
|
|
} else if (i < 8) {
|
|
_modules[i + 1][8] = mod;
|
|
} else {
|
|
_modules[_moduleCount - 15 + i][8] = mod;
|
|
}
|
|
}
|
|
|
|
// horizontal
|
|
for (var i = 0; i < 15; i += 1) {
|
|
|
|
var mod = (!test && ( (bits >> i) & 1) == 1);
|
|
|
|
if (i < 8) {
|
|
_modules[8][_moduleCount - i - 1] = mod;
|
|
} else if (i < 9) {
|
|
_modules[8][15 - i - 1 + 1] = mod;
|
|
} else {
|
|
_modules[8][15 - i - 1] = mod;
|
|
}
|
|
}
|
|
|
|
// fixed module
|
|
_modules[_moduleCount - 8][8] = (!test);
|
|
};
|
|
|
|
var mapData = function(data, maskPattern) {
|
|
|
|
var inc = -1;
|
|
var row = _moduleCount - 1;
|
|
var bitIndex = 7;
|
|
var byteIndex = 0;
|
|
var maskFunc = QRUtil.getMaskFunction(maskPattern);
|
|
|
|
for (var col = _moduleCount - 1; col > 0; col -= 2) {
|
|
|
|
if (col == 6) col -= 1;
|
|
|
|
while (true) {
|
|
|
|
for (var c = 0; c < 2; c += 1) {
|
|
|
|
if (_modules[row][col - c] == null) {
|
|
|
|
var dark = false;
|
|
|
|
if (byteIndex < data.length) {
|
|
dark = ( ( (data[byteIndex] >>> bitIndex) & 1) == 1);
|
|
}
|
|
|
|
var mask = maskFunc(row, col - c);
|
|
|
|
if (mask) {
|
|
dark = !dark;
|
|
}
|
|
|
|
_modules[row][col - c] = dark;
|
|
bitIndex -= 1;
|
|
|
|
if (bitIndex == -1) {
|
|
byteIndex += 1;
|
|
bitIndex = 7;
|
|
}
|
|
}
|
|
}
|
|
|
|
row += inc;
|
|
|
|
if (row < 0 || _moduleCount <= row) {
|
|
row -= inc;
|
|
inc = -inc;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
var createBytes = function(buffer, rsBlocks) {
|
|
|
|
var offset = 0;
|
|
|
|
var maxDcCount = 0;
|
|
var maxEcCount = 0;
|
|
|
|
var dcdata = new Array(rsBlocks.length);
|
|
var ecdata = new Array(rsBlocks.length);
|
|
|
|
for (var r = 0; r < rsBlocks.length; r += 1) {
|
|
|
|
var dcCount = rsBlocks[r].dataCount;
|
|
var ecCount = rsBlocks[r].totalCount - dcCount;
|
|
|
|
maxDcCount = Math.max(maxDcCount, dcCount);
|
|
maxEcCount = Math.max(maxEcCount, ecCount);
|
|
|
|
dcdata[r] = new Array(dcCount);
|
|
|
|
for (var i = 0; i < dcdata[r].length; i += 1) {
|
|
dcdata[r][i] = 0xff & buffer.getBuffer()[i + offset];
|
|
}
|
|
offset += dcCount;
|
|
|
|
var rsPoly = QRUtil.getErrorCorrectPolynomial(ecCount);
|
|
var rawPoly = qrPolynomial(dcdata[r], rsPoly.getLength() - 1);
|
|
|
|
var modPoly = rawPoly.mod(rsPoly);
|
|
ecdata[r] = new Array(rsPoly.getLength() - 1);
|
|
for (var i = 0; i < ecdata[r].length; i += 1) {
|
|
var modIndex = i + modPoly.getLength() - ecdata[r].length;
|
|
ecdata[r][i] = (modIndex >= 0)? modPoly.getAt(modIndex) : 0;
|
|
}
|
|
}
|
|
|
|
var totalCodeCount = 0;
|
|
for (var i = 0; i < rsBlocks.length; i += 1) {
|
|
totalCodeCount += rsBlocks[i].totalCount;
|
|
}
|
|
|
|
var data = new Array(totalCodeCount);
|
|
var index = 0;
|
|
|
|
for (var i = 0; i < maxDcCount; i += 1) {
|
|
for (var r = 0; r < rsBlocks.length; r += 1) {
|
|
if (i < dcdata[r].length) {
|
|
data[index] = dcdata[r][i];
|
|
index += 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
for (var i = 0; i < maxEcCount; i += 1) {
|
|
for (var r = 0; r < rsBlocks.length; r += 1) {
|
|
if (i < ecdata[r].length) {
|
|
data[index] = ecdata[r][i];
|
|
index += 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
return data;
|
|
};
|
|
|
|
var createData = function(typeNumber, errorCorrectLevel, dataList) {
|
|
|
|
var rsBlocks = QRRSBlock.getRSBlocks(typeNumber, errorCorrectLevel);
|
|
|
|
var buffer = qrBitBuffer();
|
|
|
|
for (var i = 0; i < dataList.length; i += 1) {
|
|
var data = dataList[i];
|
|
buffer.put(data.getMode(), 4);
|
|
buffer.put(data.getLength(), QRUtil.getLengthInBits(data.getMode(), typeNumber) );
|
|
data.write(buffer);
|
|
}
|
|
|
|
// calc num max data.
|
|
var totalDataCount = 0;
|
|
for (var i = 0; i < rsBlocks.length; i += 1) {
|
|
totalDataCount += rsBlocks[i].dataCount;
|
|
}
|
|
|
|
if (buffer.getLengthInBits() > totalDataCount * 8) {
|
|
throw new Error('code length overflow. ('
|
|
+ buffer.getLengthInBits()
|
|
+ '>'
|
|
+ totalDataCount * 8
|
|
+ ')');
|
|
}
|
|
|
|
// end code
|
|
if (buffer.getLengthInBits() + 4 <= totalDataCount * 8) {
|
|
buffer.put(0, 4);
|
|
}
|
|
|
|
// padding
|
|
while (buffer.getLengthInBits() % 8 != 0) {
|
|
buffer.putBit(false);
|
|
}
|
|
|
|
// padding
|
|
while (true) {
|
|
|
|
if (buffer.getLengthInBits() >= totalDataCount * 8) {
|
|
break;
|
|
}
|
|
buffer.put(PAD0, 8);
|
|
|
|
if (buffer.getLengthInBits() >= totalDataCount * 8) {
|
|
break;
|
|
}
|
|
buffer.put(PAD1, 8);
|
|
}
|
|
|
|
return createBytes(buffer, rsBlocks);
|
|
};
|
|
|
|
_this.addData = function(data) {
|
|
var newData = qr8BitByte(data);
|
|
_dataList.push(newData);
|
|
_dataCache = null;
|
|
};
|
|
|
|
_this.isDark = function(row, col) {
|
|
if (row < 0 || _moduleCount <= row || col < 0 || _moduleCount <= col) {
|
|
throw new Error(row + ',' + col);
|
|
}
|
|
return _modules[row][col];
|
|
};
|
|
|
|
_this.getModuleCount = function() {
|
|
return _moduleCount;
|
|
};
|
|
|
|
_this.make = function() {
|
|
makeImpl(false, getBestMaskPattern() );
|
|
};
|
|
|
|
_this.createTableTag = function(cellSize, margin) {
|
|
|
|
cellSize = cellSize || 2;
|
|
margin = (typeof margin == 'undefined')? cellSize * 4 : margin;
|
|
|
|
var qrHtml = '';
|
|
|
|
qrHtml += '<table style="';
|
|
qrHtml += ' border-width: 0px; border-style: none;';
|
|
qrHtml += ' border-collapse: collapse;';
|
|
qrHtml += ' padding: 0px; margin: ' + margin + 'px;';
|
|
qrHtml += '">';
|
|
qrHtml += '<tbody>';
|
|
|
|
for (var r = 0; r < _this.getModuleCount(); r += 1) {
|
|
|
|
qrHtml += '<tr>';
|
|
|
|
for (var c = 0; c < _this.getModuleCount(); c += 1) {
|
|
qrHtml += '<td style="';
|
|
qrHtml += ' border-width: 0px; border-style: none;';
|
|
qrHtml += ' border-collapse: collapse;';
|
|
qrHtml += ' padding: 0px; margin: 0px;';
|
|
qrHtml += ' width: ' + cellSize + 'px;';
|
|
qrHtml += ' height: ' + cellSize + 'px;';
|
|
qrHtml += ' background-color: ';
|
|
qrHtml += _this.isDark(r, c)? '#000000' : '#ffffff';
|
|
qrHtml += ';';
|
|
qrHtml += '"/>';
|
|
}
|
|
|
|
qrHtml += '</tr>';
|
|
}
|
|
|
|
qrHtml += '</tbody>';
|
|
qrHtml += '</table>';
|
|
|
|
return qrHtml;
|
|
};
|
|
|
|
_this.createImgTag = function(cellSize, margin) {
|
|
|
|
cellSize = cellSize || 2;
|
|
margin = (typeof margin == 'undefined')? cellSize * 4 : margin;
|
|
|
|
var size = _this.getModuleCount() * cellSize + margin * 2;
|
|
var min = margin;
|
|
var max = size - margin;
|
|
|
|
return createImgTag(size, size, function(x, y) {
|
|
if (min <= x && x < max && min <= y && y < max) {
|
|
var c = Math.floor( (x - min) / cellSize);
|
|
var r = Math.floor( (y - min) / cellSize);
|
|
return _this.isDark(r, c)? 0 : 1;
|
|
} else {
|
|
return 1;
|
|
}
|
|
} );
|
|
};
|
|
|
|
return _this;
|
|
};
|
|
|
|
//---------------------------------------------------------------------
|
|
// qrcode.stringToBytes
|
|
//---------------------------------------------------------------------
|
|
|
|
qrcode.stringToBytes = function(s) {
|
|
var bytes = new Array();
|
|
for (var i = 0; i < s.length; i += 1) {
|
|
var c = s.charCodeAt(i);
|
|
bytes.push(c & 0xff);
|
|
}
|
|
return bytes;
|
|
};
|
|
|
|
//---------------------------------------------------------------------
|
|
// qrcode.createStringToBytes
|
|
//---------------------------------------------------------------------
|
|
|
|
/**
|
|
* @param unicodeData base64 string of byte array.
|
|
* [16bit Unicode],[16bit Bytes], ...
|
|
* @param numChars
|
|
*/
|
|
qrcode.createStringToBytes = function(unicodeData, numChars) {
|
|
|
|
// create conversion map.
|
|
|
|
var unicodeMap = function() {
|
|
|
|
var bin = base64DecodeInputStream(unicodeData);
|
|
var read = function() {
|
|
var b = bin.read();
|
|
if (b == -1) throw new Error();
|
|
return b;
|
|
};
|
|
|
|
var count = 0;
|
|
var unicodeMap = {};
|
|
while (true) {
|
|
var b0 = bin.read();
|
|
if (b0 == -1) break;
|
|
var b1 = read();
|
|
var b2 = read();
|
|
var b3 = read();
|
|
var k = String.fromCharCode( (b0 << 8) | b1);
|
|
var v = (b2 << 8) | b3;
|
|
unicodeMap[k] = v;
|
|
count += 1;
|
|
}
|
|
if (count != numChars) {
|
|
throw new Error(count + ' != ' + numChars);
|
|
}
|
|
|
|
return unicodeMap;
|
|
}();
|
|
|
|
var unknownChar = '?'.charCodeAt(0);
|
|
|
|
return function(s) {
|
|
var bytes = new Array();
|
|
for (var i = 0; i < s.length; i += 1) {
|
|
var c = s.charCodeAt(i);
|
|
if (c < 128) {
|
|
bytes.push(c);
|
|
} else {
|
|
var b = unicodeMap[s.charAt(i)];
|
|
if (typeof b == 'number') {
|
|
if ( (b & 0xff) == b) {
|
|
// 1byte
|
|
bytes.push(b);
|
|
} else {
|
|
// 2bytes
|
|
bytes.push(b >>> 8);
|
|
bytes.push(b & 0xff);
|
|
}
|
|
} else {
|
|
bytes.push(unknownChar);
|
|
}
|
|
}
|
|
}
|
|
return bytes;
|
|
};
|
|
};
|
|
|
|
//---------------------------------------------------------------------
|
|
// QRMode
|
|
//---------------------------------------------------------------------
|
|
|
|
var QRMode = {
|
|
MODE_NUMBER : 1 << 0,
|
|
MODE_ALPHA_NUM : 1 << 1,
|
|
MODE_8BIT_BYTE : 1 << 2,
|
|
MODE_KANJI : 1 << 3
|
|
};
|
|
|
|
//---------------------------------------------------------------------
|
|
// QRErrorCorrectLevel
|
|
//---------------------------------------------------------------------
|
|
|
|
var QRErrorCorrectLevel = {
|
|
L : 1,
|
|
M : 0,
|
|
Q : 3,
|
|
H : 2
|
|
};
|
|
|
|
//---------------------------------------------------------------------
|
|
// QRMaskPattern
|
|
//---------------------------------------------------------------------
|
|
|
|
var QRMaskPattern = {
|
|
PATTERN000 : 0,
|
|
PATTERN001 : 1,
|
|
PATTERN010 : 2,
|
|
PATTERN011 : 3,
|
|
PATTERN100 : 4,
|
|
PATTERN101 : 5,
|
|
PATTERN110 : 6,
|
|
PATTERN111 : 7
|
|
};
|
|
|
|
//---------------------------------------------------------------------
|
|
// QRUtil
|
|
//---------------------------------------------------------------------
|
|
|
|
var QRUtil = function() {
|
|
|
|
var PATTERN_POSITION_TABLE = [
|
|
[],
|
|
[6, 18],
|
|
[6, 22],
|
|
[6, 26],
|
|
[6, 30],
|
|
[6, 34],
|
|
[6, 22, 38],
|
|
[6, 24, 42],
|
|
[6, 26, 46],
|
|
[6, 28, 50],
|
|
[6, 30, 54],
|
|
[6, 32, 58],
|
|
[6, 34, 62],
|
|
[6, 26, 46, 66],
|
|
[6, 26, 48, 70],
|
|
[6, 26, 50, 74],
|
|
[6, 30, 54, 78],
|
|
[6, 30, 56, 82],
|
|
[6, 30, 58, 86],
|
|
[6, 34, 62, 90],
|
|
[6, 28, 50, 72, 94],
|
|
[6, 26, 50, 74, 98],
|
|
[6, 30, 54, 78, 102],
|
|
[6, 28, 54, 80, 106],
|
|
[6, 32, 58, 84, 110],
|
|
[6, 30, 58, 86, 114],
|
|
[6, 34, 62, 90, 118],
|
|
[6, 26, 50, 74, 98, 122],
|
|
[6, 30, 54, 78, 102, 126],
|
|
[6, 26, 52, 78, 104, 130],
|
|
[6, 30, 56, 82, 108, 134],
|
|
[6, 34, 60, 86, 112, 138],
|
|
[6, 30, 58, 86, 114, 142],
|
|
[6, 34, 62, 90, 118, 146],
|
|
[6, 30, 54, 78, 102, 126, 150],
|
|
[6, 24, 50, 76, 102, 128, 154],
|
|
[6, 28, 54, 80, 106, 132, 158],
|
|
[6, 32, 58, 84, 110, 136, 162],
|
|
[6, 26, 54, 82, 110, 138, 166],
|
|
[6, 30, 58, 86, 114, 142, 170]
|
|
];
|
|
var G15 = (1 << 10) | (1 << 8) | (1 << 5) | (1 << 4) | (1 << 2) | (1 << 1) | (1 << 0);
|
|
var G18 = (1 << 12) | (1 << 11) | (1 << 10) | (1 << 9) | (1 << 8) | (1 << 5) | (1 << 2) | (1 << 0);
|
|
var G15_MASK = (1 << 14) | (1 << 12) | (1 << 10) | (1 << 4) | (1 << 1);
|
|
|
|
var _this = {};
|
|
|
|
var getBCHDigit = function(data) {
|
|
var digit = 0;
|
|
while (data != 0) {
|
|
digit += 1;
|
|
data >>>= 1;
|
|
}
|
|
return digit;
|
|
};
|
|
|
|
_this.getBCHTypeInfo = function(data) {
|
|
var d = data << 10;
|
|
while (getBCHDigit(d) - getBCHDigit(G15) >= 0) {
|
|
d ^= (G15 << (getBCHDigit(d) - getBCHDigit(G15) ) );
|
|
}
|
|
return ( (data << 10) | d) ^ G15_MASK;
|
|
};
|
|
|
|
_this.getBCHTypeNumber = function(data) {
|
|
var d = data << 12;
|
|
while (getBCHDigit(d) - getBCHDigit(G18) >= 0) {
|
|
d ^= (G18 << (getBCHDigit(d) - getBCHDigit(G18) ) );
|
|
}
|
|
return (data << 12) | d;
|
|
};
|
|
|
|
_this.getPatternPosition = function(typeNumber) {
|
|
return PATTERN_POSITION_TABLE[typeNumber - 1];
|
|
};
|
|
|
|
_this.getMaskFunction = function(maskPattern) {
|
|
|
|
switch (maskPattern) {
|
|
|
|
case QRMaskPattern.PATTERN000 :
|
|
return function(i, j) { return (i + j) % 2 == 0; };
|
|
case QRMaskPattern.PATTERN001 :
|
|
return function(i, j) { return i % 2 == 0; };
|
|
case QRMaskPattern.PATTERN010 :
|
|
return function(i, j) { return j % 3 == 0; };
|
|
case QRMaskPattern.PATTERN011 :
|
|
return function(i, j) { return (i + j) % 3 == 0; };
|
|
case QRMaskPattern.PATTERN100 :
|
|
return function(i, j) { return (Math.floor(i / 2) + Math.floor(j / 3) ) % 2 == 0; };
|
|
case QRMaskPattern.PATTERN101 :
|
|
return function(i, j) { return (i * j) % 2 + (i * j) % 3 == 0; };
|
|
case QRMaskPattern.PATTERN110 :
|
|
return function(i, j) { return ( (i * j) % 2 + (i * j) % 3) % 2 == 0; };
|
|
case QRMaskPattern.PATTERN111 :
|
|
return function(i, j) { return ( (i * j) % 3 + (i + j) % 2) % 2 == 0; };
|
|
|
|
default :
|
|
throw new Error('bad maskPattern:' + maskPattern);
|
|
}
|
|
};
|
|
|
|
_this.getErrorCorrectPolynomial = function(errorCorrectLength) {
|
|
var a = qrPolynomial([1], 0);
|
|
for (var i = 0; i < errorCorrectLength; i += 1) {
|
|
a = a.multiply(qrPolynomial([1, QRMath.gexp(i)], 0) );
|
|
}
|
|
return a;
|
|
};
|
|
|
|
_this.getLengthInBits = function(mode, type) {
|
|
|
|
if (1 <= type && type < 10) {
|
|
|
|
// 1 - 9
|
|
|
|
switch(mode) {
|
|
case QRMode.MODE_NUMBER : return 10;
|
|
case QRMode.MODE_ALPHA_NUM : return 9;
|
|
case QRMode.MODE_8BIT_BYTE : return 8;
|
|
case QRMode.MODE_KANJI : return 8;
|
|
default :
|
|
throw new Error('mode:' + mode);
|
|
}
|
|
|
|
} else if (type < 27) {
|
|
|
|
// 10 - 26
|
|
|
|
switch(mode) {
|
|
case QRMode.MODE_NUMBER : return 12;
|
|
case QRMode.MODE_ALPHA_NUM : return 11;
|
|
case QRMode.MODE_8BIT_BYTE : return 16;
|
|
case QRMode.MODE_KANJI : return 10;
|
|
default :
|
|
throw new Error('mode:' + mode);
|
|
}
|
|
|
|
} else if (type < 41) {
|
|
|
|
// 27 - 40
|
|
|
|
switch(mode) {
|
|
case QRMode.MODE_NUMBER : return 14;
|
|
case QRMode.MODE_ALPHA_NUM : return 13;
|
|
case QRMode.MODE_8BIT_BYTE : return 16;
|
|
case QRMode.MODE_KANJI : return 12;
|
|
default :
|
|
throw new Error('mode:' + mode);
|
|
}
|
|
|
|
} else {
|
|
throw new Error('type:' + type);
|
|
}
|
|
};
|
|
|
|
_this.getLostPoint = function(qrcode) {
|
|
|
|
var moduleCount = qrcode.getModuleCount();
|
|
|
|
var lostPoint = 0;
|
|
|
|
// LEVEL1
|
|
|
|
for (var row = 0; row < moduleCount; row += 1) {
|
|
for (var col = 0; col < moduleCount; col += 1) {
|
|
|
|
var sameCount = 0;
|
|
var dark = qrcode.isDark(row, col);
|
|
|
|
for (var r = -1; r <= 1; r += 1) {
|
|
|
|
if (row + r < 0 || moduleCount <= row + r) {
|
|
continue;
|
|
}
|
|
|
|
for (var c = -1; c <= 1; c += 1) {
|
|
|
|
if (col + c < 0 || moduleCount <= col + c) {
|
|
continue;
|
|
}
|
|
|
|
if (r == 0 && c == 0) {
|
|
continue;
|
|
}
|
|
|
|
if (dark == qrcode.isDark(row + r, col + c) ) {
|
|
sameCount += 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (sameCount > 5) {
|
|
lostPoint += (3 + sameCount - 5);
|
|
}
|
|
}
|
|
};
|
|
|
|
// LEVEL2
|
|
|
|
for (var row = 0; row < moduleCount - 1; row += 1) {
|
|
for (var col = 0; col < moduleCount - 1; col += 1) {
|
|
var count = 0;
|
|
if (qrcode.isDark(row, col) ) count += 1;
|
|
if (qrcode.isDark(row + 1, col) ) count += 1;
|
|
if (qrcode.isDark(row, col + 1) ) count += 1;
|
|
if (qrcode.isDark(row + 1, col + 1) ) count += 1;
|
|
if (count == 0 || count == 4) {
|
|
lostPoint += 3;
|
|
}
|
|
}
|
|
}
|
|
|
|
// LEVEL3
|
|
|
|
for (var row = 0; row < moduleCount; row += 1) {
|
|
for (var col = 0; col < moduleCount - 6; col += 1) {
|
|
if (qrcode.isDark(row, col)
|
|
&& !qrcode.isDark(row, col + 1)
|
|
&& qrcode.isDark(row, col + 2)
|
|
&& qrcode.isDark(row, col + 3)
|
|
&& qrcode.isDark(row, col + 4)
|
|
&& !qrcode.isDark(row, col + 5)
|
|
&& qrcode.isDark(row, col + 6) ) {
|
|
lostPoint += 40;
|
|
}
|
|
}
|
|
}
|
|
|
|
for (var col = 0; col < moduleCount; col += 1) {
|
|
for (var row = 0; row < moduleCount - 6; row += 1) {
|
|
if (qrcode.isDark(row, col)
|
|
&& !qrcode.isDark(row + 1, col)
|
|
&& qrcode.isDark(row + 2, col)
|
|
&& qrcode.isDark(row + 3, col)
|
|
&& qrcode.isDark(row + 4, col)
|
|
&& !qrcode.isDark(row + 5, col)
|
|
&& qrcode.isDark(row + 6, col) ) {
|
|
lostPoint += 40;
|
|
}
|
|
}
|
|
}
|
|
|
|
// LEVEL4
|
|
|
|
var darkCount = 0;
|
|
|
|
for (var col = 0; col < moduleCount; col += 1) {
|
|
for (var row = 0; row < moduleCount; row += 1) {
|
|
if (qrcode.isDark(row, col) ) {
|
|
darkCount += 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
var ratio = Math.abs(100 * darkCount / moduleCount / moduleCount - 50) / 5;
|
|
lostPoint += ratio * 10;
|
|
|
|
return lostPoint;
|
|
};
|
|
|
|
return _this;
|
|
}();
|
|
|
|
//---------------------------------------------------------------------
|
|
// QRMath
|
|
//---------------------------------------------------------------------
|
|
|
|
var QRMath = function() {
|
|
|
|
var EXP_TABLE = new Array(256);
|
|
var LOG_TABLE = new Array(256);
|
|
|
|
// initialize tables
|
|
for (var i = 0; i < 8; i += 1) {
|
|
EXP_TABLE[i] = 1 << i;
|
|
}
|
|
for (var i = 8; i < 256; i += 1) {
|
|
EXP_TABLE[i] = EXP_TABLE[i - 4]
|
|
^ EXP_TABLE[i - 5]
|
|
^ EXP_TABLE[i - 6]
|
|
^ EXP_TABLE[i - 8];
|
|
}
|
|
for (var i = 0; i < 255; i += 1) {
|
|
LOG_TABLE[EXP_TABLE[i] ] = i;
|
|
}
|
|
|
|
var _this = {};
|
|
|
|
_this.glog = function(n) {
|
|
|
|
if (n < 1) {
|
|
throw new Error('glog(' + n + ')');
|
|
}
|
|
|
|
return LOG_TABLE[n];
|
|
};
|
|
|
|
_this.gexp = function(n) {
|
|
|
|
while (n < 0) {
|
|
n += 255;
|
|
}
|
|
|
|
while (n >= 256) {
|
|
n -= 255;
|
|
}
|
|
|
|
return EXP_TABLE[n];
|
|
};
|
|
|
|
return _this;
|
|
}();
|
|
|
|
//---------------------------------------------------------------------
|
|
// qrPolynomial
|
|
//---------------------------------------------------------------------
|
|
|
|
function qrPolynomial(num, shift) {
|
|
|
|
if (typeof num.length == 'undefined') {
|
|
throw new Error(num.length + '/' + shift);
|
|
}
|
|
|
|
var _num = function() {
|
|
var offset = 0;
|
|
while (offset < num.length && num[offset] == 0) {
|
|
offset += 1;
|
|
}
|
|
var _num = new Array(num.length - offset + shift);
|
|
for (var i = 0; i < num.length - offset; i += 1) {
|
|
_num[i] = num[i + offset];
|
|
}
|
|
return _num;
|
|
}();
|
|
|
|
var _this = {};
|
|
|
|
_this.getAt = function(index) {
|
|
return _num[index];
|
|
};
|
|
|
|
_this.getLength = function() {
|
|
return _num.length;
|
|
};
|
|
|
|
_this.multiply = function(e) {
|
|
|
|
var num = new Array(_this.getLength() + e.getLength() - 1);
|
|
|
|
for (var i = 0; i < _this.getLength(); i += 1) {
|
|
for (var j = 0; j < e.getLength(); j += 1) {
|
|
num[i + j] ^= QRMath.gexp(QRMath.glog(_this.getAt(i) ) + QRMath.glog(e.getAt(j) ) );
|
|
}
|
|
}
|
|
|
|
return qrPolynomial(num, 0);
|
|
};
|
|
|
|
_this.mod = function(e) {
|
|
|
|
if (_this.getLength() - e.getLength() < 0) {
|
|
return _this;
|
|
}
|
|
|
|
var ratio = QRMath.glog(_this.getAt(0) ) - QRMath.glog(e.getAt(0) );
|
|
|
|
var num = new Array(_this.getLength() );
|
|
for (var i = 0; i < _this.getLength(); i += 1) {
|
|
num[i] = _this.getAt(i);
|
|
}
|
|
|
|
for (var i = 0; i < e.getLength(); i += 1) {
|
|
num[i] ^= QRMath.gexp(QRMath.glog(e.getAt(i) ) + ratio);
|
|
}
|
|
|
|
// recursive call
|
|
return qrPolynomial(num, 0).mod(e);
|
|
};
|
|
|
|
return _this;
|
|
};
|
|
|
|
//---------------------------------------------------------------------
|
|
// QRRSBlock
|
|
//---------------------------------------------------------------------
|
|
|
|
var QRRSBlock = function() {
|
|
|
|
var RS_BLOCK_TABLE = [
|
|
|
|
// L
|
|
// M
|
|
// Q
|
|
// H
|
|
|
|
// 1
|
|
[1, 26, 19],
|
|
[1, 26, 16],
|
|
[1, 26, 13],
|
|
[1, 26, 9],
|
|
|
|
// 2
|
|
[1, 44, 34],
|
|
[1, 44, 28],
|
|
[1, 44, 22],
|
|
[1, 44, 16],
|
|
|
|
// 3
|
|
[1, 70, 55],
|
|
[1, 70, 44],
|
|
[2, 35, 17],
|
|
[2, 35, 13],
|
|
|
|
// 4
|
|
[1, 100, 80],
|
|
[2, 50, 32],
|
|
[2, 50, 24],
|
|
[4, 25, 9],
|
|
|
|
// 5
|
|
[1, 134, 108],
|
|
[2, 67, 43],
|
|
[2, 33, 15, 2, 34, 16],
|
|
[2, 33, 11, 2, 34, 12],
|
|
|
|
// 6
|
|
[2, 86, 68],
|
|
[4, 43, 27],
|
|
[4, 43, 19],
|
|
[4, 43, 15],
|
|
|
|
// 7
|
|
[2, 98, 78],
|
|
[4, 49, 31],
|
|
[2, 32, 14, 4, 33, 15],
|
|
[4, 39, 13, 1, 40, 14],
|
|
|
|
// 8
|
|
[2, 121, 97],
|
|
[2, 60, 38, 2, 61, 39],
|
|
[4, 40, 18, 2, 41, 19],
|
|
[4, 40, 14, 2, 41, 15],
|
|
|
|
// 9
|
|
[2, 146, 116],
|
|
[3, 58, 36, 2, 59, 37],
|
|
[4, 36, 16, 4, 37, 17],
|
|
[4, 36, 12, 4, 37, 13],
|
|
|
|
// 10
|
|
[2, 86, 68, 2, 87, 69],
|
|
[4, 69, 43, 1, 70, 44],
|
|
[6, 43, 19, 2, 44, 20],
|
|
[6, 43, 15, 2, 44, 16]
|
|
];
|
|
|
|
var qrRSBlock = function(totalCount, dataCount) {
|
|
var _this = {};
|
|
_this.totalCount = totalCount;
|
|
_this.dataCount = dataCount;
|
|
return _this;
|
|
};
|
|
|
|
var _this = {};
|
|
|
|
var getRsBlockTable = function(typeNumber, errorCorrectLevel) {
|
|
|
|
switch(errorCorrectLevel) {
|
|
case QRErrorCorrectLevel.L :
|
|
return RS_BLOCK_TABLE[(typeNumber - 1) * 4 + 0];
|
|
case QRErrorCorrectLevel.M :
|
|
return RS_BLOCK_TABLE[(typeNumber - 1) * 4 + 1];
|
|
case QRErrorCorrectLevel.Q :
|
|
return RS_BLOCK_TABLE[(typeNumber - 1) * 4 + 2];
|
|
case QRErrorCorrectLevel.H :
|
|
return RS_BLOCK_TABLE[(typeNumber - 1) * 4 + 3];
|
|
default :
|
|
return undefined;
|
|
}
|
|
};
|
|
|
|
_this.getRSBlocks = function(typeNumber, errorCorrectLevel) {
|
|
|
|
var rsBlock = getRsBlockTable(typeNumber, errorCorrectLevel);
|
|
|
|
if (typeof rsBlock == 'undefined') {
|
|
throw new Error('bad rs block @ typeNumber:' + typeNumber +
|
|
'/errorCorrectLevel:' + errorCorrectLevel);
|
|
}
|
|
|
|
var length = rsBlock.length / 3;
|
|
|
|
var list = new Array();
|
|
|
|
for (var i = 0; i < length; i += 1) {
|
|
|
|
var count = rsBlock[i * 3 + 0];
|
|
var totalCount = rsBlock[i * 3 + 1];
|
|
var dataCount = rsBlock[i * 3 + 2];
|
|
|
|
for (var j = 0; j < count; j += 1) {
|
|
list.push(qrRSBlock(totalCount, dataCount) );
|
|
}
|
|
}
|
|
|
|
return list;
|
|
};
|
|
|
|
return _this;
|
|
}();
|
|
|
|
//---------------------------------------------------------------------
|
|
// qrBitBuffer
|
|
//---------------------------------------------------------------------
|
|
|
|
var qrBitBuffer = function() {
|
|
|
|
var _buffer = new Array();
|
|
var _length = 0;
|
|
|
|
var _this = {};
|
|
|
|
_this.getBuffer = function() {
|
|
return _buffer;
|
|
};
|
|
|
|
_this.getAt = function(index) {
|
|
var bufIndex = Math.floor(index / 8);
|
|
return ( (_buffer[bufIndex] >>> (7 - index % 8) ) & 1) == 1;
|
|
};
|
|
|
|
_this.put = function(num, length) {
|
|
for (var i = 0; i < length; i += 1) {
|
|
_this.putBit( ( (num >>> (length - i - 1) ) & 1) == 1);
|
|
}
|
|
};
|
|
|
|
_this.getLengthInBits = function() {
|
|
return _length;
|
|
};
|
|
|
|
_this.putBit = function(bit) {
|
|
|
|
var bufIndex = Math.floor(_length / 8);
|
|
if (_buffer.length <= bufIndex) {
|
|
_buffer.push(0);
|
|
}
|
|
|
|
if (bit) {
|
|
_buffer[bufIndex] |= (0x80 >>> (_length % 8) );
|
|
}
|
|
|
|
_length += 1;
|
|
};
|
|
|
|
return _this;
|
|
};
|
|
|
|
//---------------------------------------------------------------------
|
|
// qr8BitByte
|
|
//---------------------------------------------------------------------
|
|
|
|
var qr8BitByte = function(data) {
|
|
|
|
var _mode = QRMode.MODE_8BIT_BYTE;
|
|
var _data = data;
|
|
var _bytes = qrcode.stringToBytes(data);
|
|
|
|
var _this = {};
|
|
|
|
_this.getMode = function() {
|
|
return _mode;
|
|
};
|
|
|
|
_this.getLength = function(buffer) {
|
|
return _bytes.length;
|
|
};
|
|
|
|
_this.write = function(buffer) {
|
|
for (var i = 0; i < _bytes.length; i += 1) {
|
|
buffer.put(_bytes[i], 8);
|
|
}
|
|
};
|
|
|
|
return _this;
|
|
};
|
|
|
|
//=====================================================================
|
|
// GIF Support etc.
|
|
//
|
|
|
|
//---------------------------------------------------------------------
|
|
// byteArrayOutputStream
|
|
//---------------------------------------------------------------------
|
|
|
|
var byteArrayOutputStream = function() {
|
|
|
|
var _bytes = new Array();
|
|
|
|
var _this = {};
|
|
|
|
_this.writeByte = function(b) {
|
|
_bytes.push(b & 0xff);
|
|
};
|
|
|
|
_this.writeShort = function(i) {
|
|
_this.writeByte(i);
|
|
_this.writeByte(i >>> 8);
|
|
};
|
|
|
|
_this.writeBytes = function(b, off, len) {
|
|
off = off || 0;
|
|
len = len || b.length;
|
|
for (var i = 0; i < len; i += 1) {
|
|
_this.writeByte(b[i + off]);
|
|
}
|
|
};
|
|
|
|
_this.writeString = function(s) {
|
|
for (var i = 0; i < s.length; i += 1) {
|
|
_this.writeByte(s.charCodeAt(i) );
|
|
}
|
|
};
|
|
|
|
_this.toByteArray = function() {
|
|
return _bytes;
|
|
};
|
|
|
|
_this.toString = function() {
|
|
var s = '';
|
|
s += '[';
|
|
for (var i = 0; i < _bytes.length; i += 1) {
|
|
if (i > 0) {
|
|
s += ',';
|
|
}
|
|
s += _bytes[i];
|
|
}
|
|
s += ']';
|
|
return s;
|
|
};
|
|
|
|
return _this;
|
|
};
|
|
|
|
//---------------------------------------------------------------------
|
|
// base64EncodeOutputStream
|
|
//---------------------------------------------------------------------
|
|
|
|
var base64EncodeOutputStream = function() {
|
|
|
|
var _buffer = 0;
|
|
var _buflen = 0;
|
|
var _length = 0;
|
|
var _base64 = '';
|
|
|
|
var _this = {};
|
|
|
|
var writeEncoded = function(b) {
|
|
_base64 += String.fromCharCode(encode(b & 0x3f) );
|
|
};
|
|
|
|
var encode = function(n) {
|
|
if (n < 0) {
|
|
// error.
|
|
} else if (n < 26) {
|
|
return 0x41 + n;
|
|
} else if (n < 52) {
|
|
return 0x61 + (n - 26);
|
|
} else if (n < 62) {
|
|
return 0x30 + (n - 52);
|
|
} else if (n == 62) {
|
|
return 0x2b;
|
|
} else if (n == 63) {
|
|
return 0x2f;
|
|
}
|
|
throw new Error('n:' + n);
|
|
};
|
|
|
|
_this.writeByte = function(n) {
|
|
|
|
_buffer = (_buffer << 8) | (n & 0xff);
|
|
_buflen += 8;
|
|
_length += 1;
|
|
|
|
while (_buflen >= 6) {
|
|
writeEncoded(_buffer >>> (_buflen - 6) );
|
|
_buflen -= 6;
|
|
}
|
|
};
|
|
|
|
_this.flush = function() {
|
|
|
|
if (_buflen > 0) {
|
|
writeEncoded(_buffer << (6 - _buflen) );
|
|
_buffer = 0;
|
|
_buflen = 0;
|
|
}
|
|
|
|
if (_length % 3 != 0) {
|
|
// padding
|
|
var padlen = 3 - _length % 3;
|
|
for (var i = 0; i < padlen; i += 1) {
|
|
_base64 += '=';
|
|
}
|
|
}
|
|
};
|
|
|
|
_this.toString = function() {
|
|
return _base64;
|
|
};
|
|
|
|
return _this;
|
|
};
|
|
|
|
//---------------------------------------------------------------------
|
|
// base64DecodeInputStream
|
|
//---------------------------------------------------------------------
|
|
|
|
var base64DecodeInputStream = function(str) {
|
|
|
|
var _str = str;
|
|
var _pos = 0;
|
|
var _buffer = 0;
|
|
var _buflen = 0;
|
|
|
|
var _this = {};
|
|
|
|
_this.read = function() {
|
|
|
|
while (_buflen < 8) {
|
|
|
|
if (_pos >= _str.length) {
|
|
if (_buflen == 0) {
|
|
return -1;
|
|
}
|
|
throw new Error('unexpected end of file./' + _buflen);
|
|
}
|
|
|
|
var c = _str.charAt(_pos);
|
|
_pos += 1;
|
|
|
|
if (c == '=') {
|
|
_buflen = 0;
|
|
return -1;
|
|
} else if (c.match(/^\s$/) ) {
|
|
// ignore if whitespace.
|
|
continue;
|
|
}
|
|
|
|
_buffer = (_buffer << 6) | decode(c.charCodeAt(0) );
|
|
_buflen += 6;
|
|
}
|
|
|
|
var n = (_buffer >>> (_buflen - 8) ) & 0xff;
|
|
_buflen -= 8;
|
|
return n;
|
|
};
|
|
|
|
var decode = function(c) {
|
|
if (0x41 <= c && c <= 0x5a) {
|
|
return c - 0x41;
|
|
} else if (0x61 <= c && c <= 0x7a) {
|
|
return c - 0x61 + 26;
|
|
} else if (0x30 <= c && c <= 0x39) {
|
|
return c - 0x30 + 52;
|
|
} else if (c == 0x2b) {
|
|
return 62;
|
|
} else if (c == 0x2f) {
|
|
return 63;
|
|
} else {
|
|
throw new Error('c:' + c);
|
|
}
|
|
};
|
|
|
|
return _this;
|
|
};
|
|
|
|
//---------------------------------------------------------------------
|
|
// gifImage (B/W)
|
|
//---------------------------------------------------------------------
|
|
|
|
var gifImage = function(width, height) {
|
|
|
|
var _width = width;
|
|
var _height = height;
|
|
var _data = new Array(width * height);
|
|
|
|
var _this = {};
|
|
|
|
_this.setPixel = function(x, y, pixel) {
|
|
_data[y * _width + x] = pixel;
|
|
};
|
|
|
|
_this.write = function(out) {
|
|
|
|
//---------------------------------
|
|
// GIF Signature
|
|
|
|
out.writeString('GIF87a');
|
|
|
|
//---------------------------------
|
|
// Screen Descriptor
|
|
|
|
out.writeShort(_width);
|
|
out.writeShort(_height);
|
|
|
|
out.writeByte(0x80); // 2bit
|
|
out.writeByte(0);
|
|
out.writeByte(0);
|
|
|
|
//---------------------------------
|
|
// Global Color Map
|
|
|
|
// black
|
|
out.writeByte(0x00);
|
|
out.writeByte(0x00);
|
|
out.writeByte(0x00);
|
|
|
|
// white
|
|
out.writeByte(0xff);
|
|
out.writeByte(0xff);
|
|
out.writeByte(0xff);
|
|
|
|
//---------------------------------
|
|
// Image Descriptor
|
|
|
|
out.writeString(',');
|
|
out.writeShort(0);
|
|
out.writeShort(0);
|
|
out.writeShort(_width);
|
|
out.writeShort(_height);
|
|
out.writeByte(0);
|
|
|
|
//---------------------------------
|
|
// Local Color Map
|
|
|
|
//---------------------------------
|
|
// Raster Data
|
|
|
|
var lzwMinCodeSize = 2;
|
|
var raster = getLZWRaster(lzwMinCodeSize);
|
|
|
|
out.writeByte(lzwMinCodeSize);
|
|
|
|
var offset = 0;
|
|
|
|
while (raster.length - offset > 255) {
|
|
out.writeByte(255);
|
|
out.writeBytes(raster, offset, 255);
|
|
offset += 255;
|
|
}
|
|
|
|
out.writeByte(raster.length - offset);
|
|
out.writeBytes(raster, offset, raster.length - offset);
|
|
out.writeByte(0x00);
|
|
|
|
//---------------------------------
|
|
// GIF Terminator
|
|
out.writeString(';');
|
|
};
|
|
|
|
var bitOutputStream = function(out) {
|
|
|
|
var _out = out;
|
|
var _bitLength = 0;
|
|
var _bitBuffer = 0;
|
|
|
|
var _this = {};
|
|
|
|
_this.write = function(data, length) {
|
|
|
|
if ( (data >>> length) != 0) {
|
|
throw new Error('length over');
|
|
}
|
|
|
|
while (_bitLength + length >= 8) {
|
|
_out.writeByte(0xff & ( (data << _bitLength) | _bitBuffer) );
|
|
length -= (8 - _bitLength);
|
|
data >>>= (8 - _bitLength);
|
|
_bitBuffer = 0;
|
|
_bitLength = 0;
|
|
}
|
|
|
|
_bitBuffer = (data << _bitLength) | _bitBuffer;
|
|
_bitLength = _bitLength + length;
|
|
};
|
|
|
|
_this.flush = function() {
|
|
if (_bitLength > 0) {
|
|
_out.writeByte(_bitBuffer);
|
|
}
|
|
};
|
|
|
|
return _this;
|
|
};
|
|
|
|
var getLZWRaster = function(lzwMinCodeSize) {
|
|
|
|
var clearCode = 1 << lzwMinCodeSize;
|
|
var endCode = (1 << lzwMinCodeSize) + 1;
|
|
var bitLength = lzwMinCodeSize + 1;
|
|
|
|
// Setup LZWTable
|
|
var table = lzwTable();
|
|
|
|
for (var i = 0; i < clearCode; i += 1) {
|
|
table.add(String.fromCharCode(i) );
|
|
}
|
|
table.add(String.fromCharCode(clearCode) );
|
|
table.add(String.fromCharCode(endCode) );
|
|
|
|
var byteOut = byteArrayOutputStream();
|
|
var bitOut = bitOutputStream(byteOut);
|
|
|
|
// clear code
|
|
bitOut.write(clearCode, bitLength);
|
|
|
|
var dataIndex = 0;
|
|
|
|
var s = String.fromCharCode(_data[dataIndex]);
|
|
dataIndex += 1;
|
|
|
|
while (dataIndex < _data.length) {
|
|
|
|
var c = String.fromCharCode(_data[dataIndex]);
|
|
dataIndex += 1;
|
|
|
|
if (table.contains(s + c) ) {
|
|
|
|
s = s + c;
|
|
|
|
} else {
|
|
|
|
bitOut.write(table.indexOf(s), bitLength);
|
|
|
|
if (table.size() < 0xfff) {
|
|
|
|
if (table.size() == (1 << bitLength) ) {
|
|
bitLength += 1;
|
|
}
|
|
|
|
table.add(s + c);
|
|
}
|
|
|
|
s = c;
|
|
}
|
|
}
|
|
|
|
bitOut.write(table.indexOf(s), bitLength);
|
|
|
|
// end code
|
|
bitOut.write(endCode, bitLength);
|
|
|
|
bitOut.flush();
|
|
|
|
return byteOut.toByteArray();
|
|
};
|
|
|
|
var lzwTable = function() {
|
|
|
|
var _map = {};
|
|
var _size = 0;
|
|
|
|
var _this = {};
|
|
|
|
_this.add = function(key) {
|
|
if (_this.contains(key) ) {
|
|
throw new Error('dup key:' + key);
|
|
}
|
|
_map[key] = _size;
|
|
_size += 1;
|
|
};
|
|
|
|
_this.size = function() {
|
|
return _size;
|
|
};
|
|
|
|
_this.indexOf = function(key) {
|
|
return _map[key];
|
|
};
|
|
|
|
_this.contains = function(key) {
|
|
return typeof _map[key] != 'undefined';
|
|
};
|
|
|
|
return _this;
|
|
};
|
|
|
|
return _this;
|
|
};
|
|
|
|
var createImgTag = function(width, height, getPixel, alt) {
|
|
|
|
var gif = gifImage(width, height);
|
|
for (var y = 0; y < height; y += 1) {
|
|
for (var x = 0; x < width; x += 1) {
|
|
gif.setPixel(x, y, getPixel(x, y) );
|
|
}
|
|
}
|
|
|
|
var b = byteArrayOutputStream();
|
|
gif.write(b);
|
|
|
|
var base64 = base64EncodeOutputStream();
|
|
var bytes = b.toByteArray();
|
|
for (var i = 0; i < bytes.length; i += 1) {
|
|
base64.writeByte(bytes[i]);
|
|
}
|
|
base64.flush();
|
|
|
|
var img = '';
|
|
img += '<img';
|
|
img += '\u0020src="';
|
|
img += 'data:image/gif;base64,';
|
|
img += base64;
|
|
img += '"';
|
|
img += '\u0020width="';
|
|
img += width;
|
|
img += '"';
|
|
img += '\u0020height="';
|
|
img += height;
|
|
img += '"';
|
|
if (alt) {
|
|
img += '\u0020alt="';
|
|
img += alt;
|
|
img += '"';
|
|
}
|
|
img += '/>';
|
|
|
|
return img;
|
|
};
|
|
|
|
//---------------------------------------------------------------------
|
|
// returns qrcode function.
|
|
|
|
return qrcode;
|
|
}();
|
|
|
|
// Source: public/src/js/jsqrcode/grid.js
|
|
/*
|
|
Ported to JavaScript by Lazar Laszlo 2011
|
|
|
|
lazarsoft@gmail.com, www.lazarsoft.info
|
|
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
GridSampler = {};
|
|
|
|
GridSampler.checkAndNudgePoints=function( image, points)
|
|
{
|
|
var width = qrcode.width;
|
|
var height = qrcode.height;
|
|
// Check and nudge points from start until we see some that are OK:
|
|
var nudged = true;
|
|
for (var offset = 0; offset < points.length && nudged; offset += 2)
|
|
{
|
|
var x = Math.floor (points[offset]);
|
|
var y = Math.floor( points[offset + 1]);
|
|
if (x < - 1 || x > width || y < - 1 || y > height)
|
|
{
|
|
throw "Error.checkAndNudgePoints ";
|
|
}
|
|
nudged = false;
|
|
if (x == - 1)
|
|
{
|
|
points[offset] = 0.0;
|
|
nudged = true;
|
|
}
|
|
else if (x == width)
|
|
{
|
|
points[offset] = width - 1;
|
|
nudged = true;
|
|
}
|
|
if (y == - 1)
|
|
{
|
|
points[offset + 1] = 0.0;
|
|
nudged = true;
|
|
}
|
|
else if (y == height)
|
|
{
|
|
points[offset + 1] = height - 1;
|
|
nudged = true;
|
|
}
|
|
}
|
|
// Check and nudge points from end:
|
|
nudged = true;
|
|
for (var offset = points.length - 2; offset >= 0 && nudged; offset -= 2)
|
|
{
|
|
var x = Math.floor( points[offset]);
|
|
var y = Math.floor( points[offset + 1]);
|
|
if (x < - 1 || x > width || y < - 1 || y > height)
|
|
{
|
|
throw "Error.checkAndNudgePoints ";
|
|
}
|
|
nudged = false;
|
|
if (x == - 1)
|
|
{
|
|
points[offset] = 0.0;
|
|
nudged = true;
|
|
}
|
|
else if (x == width)
|
|
{
|
|
points[offset] = width - 1;
|
|
nudged = true;
|
|
}
|
|
if (y == - 1)
|
|
{
|
|
points[offset + 1] = 0.0;
|
|
nudged = true;
|
|
}
|
|
else if (y == height)
|
|
{
|
|
points[offset + 1] = height - 1;
|
|
nudged = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
GridSampler.sampleGrid3=function( image, dimension, transform)
|
|
{
|
|
var bits = new BitMatrix(dimension);
|
|
var points = new Array(dimension << 1);
|
|
for (var y = 0; y < dimension; y++)
|
|
{
|
|
var max = points.length;
|
|
var iValue = y + 0.5;
|
|
for (var x = 0; x < max; x += 2)
|
|
{
|
|
points[x] = (x >> 1) + 0.5;
|
|
points[x + 1] = iValue;
|
|
}
|
|
transform.transformPoints1(points);
|
|
// Quick check to see if points transformed to something inside the image;
|
|
// sufficient to check the endpoints
|
|
GridSampler.checkAndNudgePoints(image, points);
|
|
try
|
|
{
|
|
for (var x = 0; x < max; x += 2)
|
|
{
|
|
var xpoint = (Math.floor( points[x]) * 4) + (Math.floor( points[x + 1]) * qrcode.width * 4);
|
|
var bit = image[Math.floor( points[x])+ qrcode.width* Math.floor( points[x + 1])];
|
|
qrcode.imagedata.data[xpoint] = bit?255:0;
|
|
qrcode.imagedata.data[xpoint+1] = bit?255:0;
|
|
qrcode.imagedata.data[xpoint+2] = 0;
|
|
qrcode.imagedata.data[xpoint+3] = 255;
|
|
//bits[x >> 1][ y]=bit;
|
|
if(bit)
|
|
bits.set_Renamed(x >> 1, y);
|
|
}
|
|
}
|
|
catch ( aioobe)
|
|
{
|
|
// This feels wrong, but, sometimes if the finder patterns are misidentified, the resulting
|
|
// transform gets "twisted" such that it maps a straight line of points to a set of points
|
|
// whose endpoints are in bounds, but others are not. There is probably some mathematical
|
|
// way to detect this about the transformation that I don't know yet.
|
|
// This results in an ugly runtime exception despite our clever checks above -- can't have
|
|
// that. We could check each point's coordinates but that feels duplicative. We settle for
|
|
// catching and wrapping ArrayIndexOutOfBoundsException.
|
|
throw "Error.checkAndNudgePoints";
|
|
}
|
|
}
|
|
return bits;
|
|
}
|
|
|
|
GridSampler.sampleGridx=function( image, dimension, p1ToX, p1ToY, p2ToX, p2ToY, p3ToX, p3ToY, p4ToX, p4ToY, p1FromX, p1FromY, p2FromX, p2FromY, p3FromX, p3FromY, p4FromX, p4FromY)
|
|
{
|
|
var transform = PerspectiveTransform.quadrilateralToQuadrilateral(p1ToX, p1ToY, p2ToX, p2ToY, p3ToX, p3ToY, p4ToX, p4ToY, p1FromX, p1FromY, p2FromX, p2FromY, p3FromX, p3FromY, p4FromX, p4FromY);
|
|
|
|
return GridSampler.sampleGrid3(image, dimension, transform);
|
|
}
|
|
|
|
// Source: public/src/js/jsqrcode/version.js
|
|
/*
|
|
Ported to JavaScript by Lazar Laszlo 2011
|
|
|
|
lazarsoft@gmail.com, www.lazarsoft.info
|
|
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
|
|
function ECB(count, dataCodewords)
|
|
{
|
|
this.count = count;
|
|
this.dataCodewords = dataCodewords;
|
|
|
|
this.__defineGetter__("Count", function()
|
|
{
|
|
return this.count;
|
|
});
|
|
this.__defineGetter__("DataCodewords", function()
|
|
{
|
|
return this.dataCodewords;
|
|
});
|
|
}
|
|
|
|
function ECBlocks( ecCodewordsPerBlock, ecBlocks1, ecBlocks2)
|
|
{
|
|
this.ecCodewordsPerBlock = ecCodewordsPerBlock;
|
|
if(ecBlocks2)
|
|
this.ecBlocks = new Array(ecBlocks1, ecBlocks2);
|
|
else
|
|
this.ecBlocks = new Array(ecBlocks1);
|
|
|
|
this.__defineGetter__("ECCodewordsPerBlock", function()
|
|
{
|
|
return this.ecCodewordsPerBlock;
|
|
});
|
|
|
|
this.__defineGetter__("TotalECCodewords", function()
|
|
{
|
|
return this.ecCodewordsPerBlock * this.NumBlocks;
|
|
});
|
|
|
|
this.__defineGetter__("NumBlocks", function()
|
|
{
|
|
var total = 0;
|
|
for (var i = 0; i < this.ecBlocks.length; i++)
|
|
{
|
|
total += this.ecBlocks[i].length;
|
|
}
|
|
return total;
|
|
});
|
|
|
|
this.getECBlocks=function()
|
|
{
|
|
return this.ecBlocks;
|
|
}
|
|
}
|
|
|
|
function Version( versionNumber, alignmentPatternCenters, ecBlocks1, ecBlocks2, ecBlocks3, ecBlocks4)
|
|
{
|
|
this.versionNumber = versionNumber;
|
|
this.alignmentPatternCenters = alignmentPatternCenters;
|
|
this.ecBlocks = new Array(ecBlocks1, ecBlocks2, ecBlocks3, ecBlocks4);
|
|
|
|
var total = 0;
|
|
var ecCodewords = ecBlocks1.ECCodewordsPerBlock;
|
|
var ecbArray = ecBlocks1.getECBlocks();
|
|
for (var i = 0; i < ecbArray.length; i++)
|
|
{
|
|
var ecBlock = ecbArray[i];
|
|
total += ecBlock.Count * (ecBlock.DataCodewords + ecCodewords);
|
|
}
|
|
this.totalCodewords = total;
|
|
|
|
this.__defineGetter__("VersionNumber", function()
|
|
{
|
|
return this.versionNumber;
|
|
});
|
|
|
|
this.__defineGetter__("AlignmentPatternCenters", function()
|
|
{
|
|
return this.alignmentPatternCenters;
|
|
});
|
|
this.__defineGetter__("TotalCodewords", function()
|
|
{
|
|
return this.totalCodewords;
|
|
});
|
|
this.__defineGetter__("DimensionForVersion", function()
|
|
{
|
|
return 17 + 4 * this.versionNumber;
|
|
});
|
|
|
|
this.buildFunctionPattern=function()
|
|
{
|
|
var dimension = this.DimensionForVersion;
|
|
var bitMatrix = new BitMatrix(dimension);
|
|
|
|
// Top left finder pattern + separator + format
|
|
bitMatrix.setRegion(0, 0, 9, 9);
|
|
// Top right finder pattern + separator + format
|
|
bitMatrix.setRegion(dimension - 8, 0, 8, 9);
|
|
// Bottom left finder pattern + separator + format
|
|
bitMatrix.setRegion(0, dimension - 8, 9, 8);
|
|
|
|
// Alignment patterns
|
|
var max = this.alignmentPatternCenters.length;
|
|
for (var x = 0; x < max; x++)
|
|
{
|
|
var i = this.alignmentPatternCenters[x] - 2;
|
|
for (var y = 0; y < max; y++)
|
|
{
|
|
if ((x == 0 && (y == 0 || y == max - 1)) || (x == max - 1 && y == 0))
|
|
{
|
|
// No alignment patterns near the three finder paterns
|
|
continue;
|
|
}
|
|
bitMatrix.setRegion(this.alignmentPatternCenters[y] - 2, i, 5, 5);
|
|
}
|
|
}
|
|
|
|
// Vertical timing pattern
|
|
bitMatrix.setRegion(6, 9, 1, dimension - 17);
|
|
// Horizontal timing pattern
|
|
bitMatrix.setRegion(9, 6, dimension - 17, 1);
|
|
|
|
if (this.versionNumber > 6)
|
|
{
|
|
// Version info, top right
|
|
bitMatrix.setRegion(dimension - 11, 0, 3, 6);
|
|
// Version info, bottom left
|
|
bitMatrix.setRegion(0, dimension - 11, 6, 3);
|
|
}
|
|
|
|
return bitMatrix;
|
|
}
|
|
this.getECBlocksForLevel=function( ecLevel)
|
|
{
|
|
return this.ecBlocks[ecLevel.ordinal()];
|
|
}
|
|
}
|
|
|
|
Version.VERSION_DECODE_INFO = new Array(0x07C94, 0x085BC, 0x09A99, 0x0A4D3, 0x0BBF6, 0x0C762, 0x0D847, 0x0E60D, 0x0F928, 0x10B78, 0x1145D, 0x12A17, 0x13532, 0x149A6, 0x15683, 0x168C9, 0x177EC, 0x18EC4, 0x191E1, 0x1AFAB, 0x1B08E, 0x1CC1A, 0x1D33F, 0x1ED75, 0x1F250, 0x209D5, 0x216F0, 0x228BA, 0x2379F, 0x24B0B, 0x2542E, 0x26A64, 0x27541, 0x28C69);
|
|
|
|
Version.VERSIONS = buildVersions();
|
|
|
|
Version.getVersionForNumber=function( versionNumber)
|
|
{
|
|
if (versionNumber < 1 || versionNumber > 40)
|
|
{
|
|
throw "ArgumentException";
|
|
}
|
|
return Version.VERSIONS[versionNumber - 1];
|
|
}
|
|
|
|
Version.getProvisionalVersionForDimension=function(dimension)
|
|
{
|
|
if (dimension % 4 != 1)
|
|
{
|
|
throw "Error getProvisionalVersionForDimension";
|
|
}
|
|
try
|
|
{
|
|
return Version.getVersionForNumber((dimension - 17) >> 2);
|
|
}
|
|
catch ( iae)
|
|
{
|
|
throw "Error getVersionForNumber";
|
|
}
|
|
}
|
|
|
|
Version.decodeVersionInformation=function( versionBits)
|
|
{
|
|
var bestDifference = 0xffffffff;
|
|
var bestVersion = 0;
|
|
for (var i = 0; i < Version.VERSION_DECODE_INFO.length; i++)
|
|
{
|
|
var targetVersion = Version.VERSION_DECODE_INFO[i];
|
|
// Do the version info bits match exactly? done.
|
|
if (targetVersion == versionBits)
|
|
{
|
|
return this.getVersionForNumber(i + 7);
|
|
}
|
|
// Otherwise see if this is the closest to a real version info bit string
|
|
// we have seen so far
|
|
var bitsDifference = FormatInformation.numBitsDiffering(versionBits, targetVersion);
|
|
if (bitsDifference < bestDifference)
|
|
{
|
|
bestVersion = i + 7;
|
|
bestDifference = bitsDifference;
|
|
}
|
|
}
|
|
// We can tolerate up to 3 bits of error since no two version info codewords will
|
|
// differ in less than 4 bits.
|
|
if (bestDifference <= 3)
|
|
{
|
|
return this.getVersionForNumber(bestVersion);
|
|
}
|
|
// If we didn't find a close enough match, fail
|
|
return null;
|
|
}
|
|
|
|
function buildVersions()
|
|
{
|
|
return new Array(new Version(1, new Array(), new ECBlocks(7, new ECB(1, 19)), new ECBlocks(10, new ECB(1, 16)), new ECBlocks(13, new ECB(1, 13)), new ECBlocks(17, new ECB(1, 9))),
|
|
new Version(2, new Array(6, 18), new ECBlocks(10, new ECB(1, 34)), new ECBlocks(16, new ECB(1, 28)), new ECBlocks(22, new ECB(1, 22)), new ECBlocks(28, new ECB(1, 16))),
|
|
new Version(3, new Array(6, 22), new ECBlocks(15, new ECB(1, 55)), new ECBlocks(26, new ECB(1, 44)), new ECBlocks(18, new ECB(2, 17)), new ECBlocks(22, new ECB(2, 13))),
|
|
new Version(4, new Array(6, 26), new ECBlocks(20, new ECB(1, 80)), new ECBlocks(18, new ECB(2, 32)), new ECBlocks(26, new ECB(2, 24)), new ECBlocks(16, new ECB(4, 9))),
|
|
new Version(5, new Array(6, 30), new ECBlocks(26, new ECB(1, 108)), new ECBlocks(24, new ECB(2, 43)), new ECBlocks(18, new ECB(2, 15), new ECB(2, 16)), new ECBlocks(22, new ECB(2, 11), new ECB(2, 12))),
|
|
new Version(6, new Array(6, 34), new ECBlocks(18, new ECB(2, 68)), new ECBlocks(16, new ECB(4, 27)), new ECBlocks(24, new ECB(4, 19)), new ECBlocks(28, new ECB(4, 15))),
|
|
new Version(7, new Array(6, 22, 38), new ECBlocks(20, new ECB(2, 78)), new ECBlocks(18, new ECB(4, 31)), new ECBlocks(18, new ECB(2, 14), new ECB(4, 15)), new ECBlocks(26, new ECB(4, 13), new ECB(1, 14))),
|
|
new Version(8, new Array(6, 24, 42), new ECBlocks(24, new ECB(2, 97)), new ECBlocks(22, new ECB(2, 38), new ECB(2, 39)), new ECBlocks(22, new ECB(4, 18), new ECB(2, 19)), new ECBlocks(26, new ECB(4, 14), new ECB(2, 15))),
|
|
new Version(9, new Array(6, 26, 46), new ECBlocks(30, new ECB(2, 116)), new ECBlocks(22, new ECB(3, 36), new ECB(2, 37)), new ECBlocks(20, new ECB(4, 16), new ECB(4, 17)), new ECBlocks(24, new ECB(4, 12), new ECB(4, 13))),
|
|
new Version(10, new Array(6, 28, 50), new ECBlocks(18, new ECB(2, 68), new ECB(2, 69)), new ECBlocks(26, new ECB(4, 43), new ECB(1, 44)), new ECBlocks(24, new ECB(6, 19), new ECB(2, 20)), new ECBlocks(28, new ECB(6, 15), new ECB(2, 16))),
|
|
new Version(11, new Array(6, 30, 54), new ECBlocks(20, new ECB(4, 81)), new ECBlocks(30, new ECB(1, 50), new ECB(4, 51)), new ECBlocks(28, new ECB(4, 22), new ECB(4, 23)), new ECBlocks(24, new ECB(3, 12), new ECB(8, 13))),
|
|
new Version(12, new Array(6, 32, 58), new ECBlocks(24, new ECB(2, 92), new ECB(2, 93)), new ECBlocks(22, new ECB(6, 36), new ECB(2, 37)), new ECBlocks(26, new ECB(4, 20), new ECB(6, 21)), new ECBlocks(28, new ECB(7, 14), new ECB(4, 15))),
|
|
new Version(13, new Array(6, 34, 62), new ECBlocks(26, new ECB(4, 107)), new ECBlocks(22, new ECB(8, 37), new ECB(1, 38)), new ECBlocks(24, new ECB(8, 20), new ECB(4, 21)), new ECBlocks(22, new ECB(12, 11), new ECB(4, 12))),
|
|
new Version(14, new Array(6, 26, 46, 66), new ECBlocks(30, new ECB(3, 115), new ECB(1, 116)), new ECBlocks(24, new ECB(4, 40), new ECB(5, 41)), new ECBlocks(20, new ECB(11, 16), new ECB(5, 17)), new ECBlocks(24, new ECB(11, 12), new ECB(5, 13))),
|
|
new Version(15, new Array(6, 26, 48, 70), new ECBlocks(22, new ECB(5, 87), new ECB(1, 88)), new ECBlocks(24, new ECB(5, 41), new ECB(5, 42)), new ECBlocks(30, new ECB(5, 24), new ECB(7, 25)), new ECBlocks(24, new ECB(11, 12), new ECB(7, 13))),
|
|
new Version(16, new Array(6, 26, 50, 74), new ECBlocks(24, new ECB(5, 98), new ECB(1, 99)), new ECBlocks(28, new ECB(7, 45), new ECB(3, 46)), new ECBlocks(24, new ECB(15, 19), new ECB(2, 20)), new ECBlocks(30, new ECB(3, 15), new ECB(13, 16))),
|
|
new Version(17, new Array(6, 30, 54, 78), new ECBlocks(28, new ECB(1, 107), new ECB(5, 108)), new ECBlocks(28, new ECB(10, 46), new ECB(1, 47)), new ECBlocks(28, new ECB(1, 22), new ECB(15, 23)), new ECBlocks(28, new ECB(2, 14), new ECB(17, 15))),
|
|
new Version(18, new Array(6, 30, 56, 82), new ECBlocks(30, new ECB(5, 120), new ECB(1, 121)), new ECBlocks(26, new ECB(9, 43), new ECB(4, 44)), new ECBlocks(28, new ECB(17, 22), new ECB(1, 23)), new ECBlocks(28, new ECB(2, 14), new ECB(19, 15))),
|
|
new Version(19, new Array(6, 30, 58, 86), new ECBlocks(28, new ECB(3, 113), new ECB(4, 114)), new ECBlocks(26, new ECB(3, 44), new ECB(11, 45)), new ECBlocks(26, new ECB(17, 21), new ECB(4, 22)), new ECBlocks(26, new ECB(9, 13), new ECB(16, 14))),
|
|
new Version(20, new Array(6, 34, 62, 90), new ECBlocks(28, new ECB(3, 107), new ECB(5, 108)), new ECBlocks(26, new ECB(3, 41), new ECB(13, 42)), new ECBlocks(30, new ECB(15, 24), new ECB(5, 25)), new ECBlocks(28, new ECB(15, 15), new ECB(10, 16))),
|
|
new Version(21, new Array(6, 28, 50, 72, 94), new ECBlocks(28, new ECB(4, 116), new ECB(4, 117)), new ECBlocks(26, new ECB(17, 42)), new ECBlocks(28, new ECB(17, 22), new ECB(6, 23)), new ECBlocks(30, new ECB(19, 16), new ECB(6, 17))),
|
|
new Version(22, new Array(6, 26, 50, 74, 98), new ECBlocks(28, new ECB(2, 111), new ECB(7, 112)), new ECBlocks(28, new ECB(17, 46)), new ECBlocks(30, new ECB(7, 24), new ECB(16, 25)), new ECBlocks(24, new ECB(34, 13))),
|
|
new Version(23, new Array(6, 30, 54, 74, 102), new ECBlocks(30, new ECB(4, 121), new ECB(5, 122)), new ECBlocks(28, new ECB(4, 47), new ECB(14, 48)), new ECBlocks(30, new ECB(11, 24), new ECB(14, 25)), new ECBlocks(30, new ECB(16, 15), new ECB(14, 16))),
|
|
new Version(24, new Array(6, 28, 54, 80, 106), new ECBlocks(30, new ECB(6, 117), new ECB(4, 118)), new ECBlocks(28, new ECB(6, 45), new ECB(14, 46)), new ECBlocks(30, new ECB(11, 24), new ECB(16, 25)), new ECBlocks(30, new ECB(30, 16), new ECB(2, 17))),
|
|
new Version(25, new Array(6, 32, 58, 84, 110), new ECBlocks(26, new ECB(8, 106), new ECB(4, 107)), new ECBlocks(28, new ECB(8, 47), new ECB(13, 48)), new ECBlocks(30, new ECB(7, 24), new ECB(22, 25)), new ECBlocks(30, new ECB(22, 15), new ECB(13, 16))),
|
|
new Version(26, new Array(6, 30, 58, 86, 114), new ECBlocks(28, new ECB(10, 114), new ECB(2, 115)), new ECBlocks(28, new ECB(19, 46), new ECB(4, 47)), new ECBlocks(28, new ECB(28, 22), new ECB(6, 23)), new ECBlocks(30, new ECB(33, 16), new ECB(4, 17))),
|
|
new Version(27, new Array(6, 34, 62, 90, 118), new ECBlocks(30, new ECB(8, 122), new ECB(4, 123)), new ECBlocks(28, new ECB(22, 45), new ECB(3, 46)), new ECBlocks(30, new ECB(8, 23), new ECB(26, 24)), new ECBlocks(30, new ECB(12, 15), new ECB(28, 16))),
|
|
new Version(28, new Array(6, 26, 50, 74, 98, 122), new ECBlocks(30, new ECB(3, 117), new ECB(10, 118)), new ECBlocks(28, new ECB(3, 45), new ECB(23, 46)), new ECBlocks(30, new ECB(4, 24), new ECB(31, 25)), new ECBlocks(30, new ECB(11, 15), new ECB(31, 16))),
|
|
new Version(29, new Array(6, 30, 54, 78, 102, 126), new ECBlocks(30, new ECB(7, 116), new ECB(7, 117)), new ECBlocks(28, new ECB(21, 45), new ECB(7, 46)), new ECBlocks(30, new ECB(1, 23), new ECB(37, 24)), new ECBlocks(30, new ECB(19, 15), new ECB(26, 16))),
|
|
new Version(30, new Array(6, 26, 52, 78, 104, 130), new ECBlocks(30, new ECB(5, 115), new ECB(10, 116)), new ECBlocks(28, new ECB(19, 47), new ECB(10, 48)), new ECBlocks(30, new ECB(15, 24), new ECB(25, 25)), new ECBlocks(30, new ECB(23, 15), new ECB(25, 16))),
|
|
new Version(31, new Array(6, 30, 56, 82, 108, 134), new ECBlocks(30, new ECB(13, 115), new ECB(3, 116)), new ECBlocks(28, new ECB(2, 46), new ECB(29, 47)), new ECBlocks(30, new ECB(42, 24), new ECB(1, 25)), new ECBlocks(30, new ECB(23, 15), new ECB(28, 16))),
|
|
new Version(32, new Array(6, 34, 60, 86, 112, 138), new ECBlocks(30, new ECB(17, 115)), new ECBlocks(28, new ECB(10, 46), new ECB(23, 47)), new ECBlocks(30, new ECB(10, 24), new ECB(35, 25)), new ECBlocks(30, new ECB(19, 15), new ECB(35, 16))),
|
|
new Version(33, new Array(6, 30, 58, 86, 114, 142), new ECBlocks(30, new ECB(17, 115), new ECB(1, 116)), new ECBlocks(28, new ECB(14, 46), new ECB(21, 47)), new ECBlocks(30, new ECB(29, 24), new ECB(19, 25)), new ECBlocks(30, new ECB(11, 15), new ECB(46, 16))),
|
|
new Version(34, new Array(6, 34, 62, 90, 118, 146), new ECBlocks(30, new ECB(13, 115), new ECB(6, 116)), new ECBlocks(28, new ECB(14, 46), new ECB(23, 47)), new ECBlocks(30, new ECB(44, 24), new ECB(7, 25)), new ECBlocks(30, new ECB(59, 16), new ECB(1, 17))),
|
|
new Version(35, new Array(6, 30, 54, 78, 102, 126, 150), new ECBlocks(30, new ECB(12, 121), new ECB(7, 122)), new ECBlocks(28, new ECB(12, 47), new ECB(26, 48)), new ECBlocks(30, new ECB(39, 24), new ECB(14, 25)),new ECBlocks(30, new ECB(22, 15), new ECB(41, 16))),
|
|
new Version(36, new Array(6, 24, 50, 76, 102, 128, 154), new ECBlocks(30, new ECB(6, 121), new ECB(14, 122)), new ECBlocks(28, new ECB(6, 47), new ECB(34, 48)), new ECBlocks(30, new ECB(46, 24), new ECB(10, 25)), new ECBlocks(30, new ECB(2, 15), new ECB(64, 16))),
|
|
new Version(37, new Array(6, 28, 54, 80, 106, 132, 158), new ECBlocks(30, new ECB(17, 122), new ECB(4, 123)), new ECBlocks(28, new ECB(29, 46), new ECB(14, 47)), new ECBlocks(30, new ECB(49, 24), new ECB(10, 25)), new ECBlocks(30, new ECB(24, 15), new ECB(46, 16))),
|
|
new Version(38, new Array(6, 32, 58, 84, 110, 136, 162), new ECBlocks(30, new ECB(4, 122), new ECB(18, 123)), new ECBlocks(28, new ECB(13, 46), new ECB(32, 47)), new ECBlocks(30, new ECB(48, 24), new ECB(14, 25)), new ECBlocks(30, new ECB(42, 15), new ECB(32, 16))),
|
|
new Version(39, new Array(6, 26, 54, 82, 110, 138, 166), new ECBlocks(30, new ECB(20, 117), new ECB(4, 118)), new ECBlocks(28, new ECB(40, 47), new ECB(7, 48)), new ECBlocks(30, new ECB(43, 24), new ECB(22, 25)), new ECBlocks(30, new ECB(10, 15), new ECB(67, 16))),
|
|
new Version(40, new Array(6, 30, 58, 86, 114, 142, 170), new ECBlocks(30, new ECB(19, 118), new ECB(6, 119)), new ECBlocks(28, new ECB(18, 47), new ECB(31, 48)), new ECBlocks(30, new ECB(34, 24), new ECB(34, 25)), new ECBlocks(30, new ECB(20, 15), new ECB(61, 16))));
|
|
}
|
|
// Source: public/src/js/jsqrcode/detector.js
|
|
/*
|
|
Ported to JavaScript by Lazar Laszlo 2011
|
|
|
|
lazarsoft@gmail.com, www.lazarsoft.info
|
|
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
function PerspectiveTransform( a11, a21, a31, a12, a22, a32, a13, a23, a33)
|
|
{
|
|
this.a11 = a11;
|
|
this.a12 = a12;
|
|
this.a13 = a13;
|
|
this.a21 = a21;
|
|
this.a22 = a22;
|
|
this.a23 = a23;
|
|
this.a31 = a31;
|
|
this.a32 = a32;
|
|
this.a33 = a33;
|
|
this.transformPoints1=function( points)
|
|
{
|
|
var max = points.length;
|
|
var a11 = this.a11;
|
|
var a12 = this.a12;
|
|
var a13 = this.a13;
|
|
var a21 = this.a21;
|
|
var a22 = this.a22;
|
|
var a23 = this.a23;
|
|
var a31 = this.a31;
|
|
var a32 = this.a32;
|
|
var a33 = this.a33;
|
|
for (var i = 0; i < max; i += 2)
|
|
{
|
|
var x = points[i];
|
|
var y = points[i + 1];
|
|
var denominator = a13 * x + a23 * y + a33;
|
|
points[i] = (a11 * x + a21 * y + a31) / denominator;
|
|
points[i + 1] = (a12 * x + a22 * y + a32) / denominator;
|
|
}
|
|
}
|
|
this. transformPoints2=function(xValues, yValues)
|
|
{
|
|
var n = xValues.length;
|
|
for (var i = 0; i < n; i++)
|
|
{
|
|
var x = xValues[i];
|
|
var y = yValues[i];
|
|
var denominator = this.a13 * x + this.a23 * y + this.a33;
|
|
xValues[i] = (this.a11 * x + this.a21 * y + this.a31) / denominator;
|
|
yValues[i] = (this.a12 * x + this.a22 * y + this.a32) / denominator;
|
|
}
|
|
}
|
|
|
|
this.buildAdjoint=function()
|
|
{
|
|
// Adjoint is the transpose of the cofactor matrix:
|
|
return new PerspectiveTransform(this.a22 * this.a33 - this.a23 * this.a32, this.a23 * this.a31 - this.a21 * this.a33, this.a21 * this.a32 - this.a22 * this.a31, this.a13 * this.a32 - this.a12 * this.a33, this.a11 * this.a33 - this.a13 * this.a31, this.a12 * this.a31 - this.a11 * this.a32, this.a12 * this.a23 - this.a13 * this.a22, this.a13 * this.a21 - this.a11 * this.a23, this.a11 * this.a22 - this.a12 * this.a21);
|
|
}
|
|
this.times=function( other)
|
|
{
|
|
return new PerspectiveTransform(this.a11 * other.a11 + this.a21 * other.a12 + this.a31 * other.a13, this.a11 * other.a21 + this.a21 * other.a22 + this.a31 * other.a23, this.a11 * other.a31 + this.a21 * other.a32 + this.a31 * other.a33, this.a12 * other.a11 + this.a22 * other.a12 + this.a32 * other.a13, this.a12 * other.a21 + this.a22 * other.a22 + this.a32 * other.a23, this.a12 * other.a31 + this.a22 * other.a32 + this.a32 * other.a33, this.a13 * other.a11 + this.a23 * other.a12 +this.a33 * other.a13, this.a13 * other.a21 + this.a23 * other.a22 + this.a33 * other.a23, this.a13 * other.a31 + this.a23 * other.a32 + this.a33 * other.a33);
|
|
}
|
|
|
|
}
|
|
|
|
PerspectiveTransform.quadrilateralToQuadrilateral=function( x0, y0, x1, y1, x2, y2, x3, y3, x0p, y0p, x1p, y1p, x2p, y2p, x3p, y3p)
|
|
{
|
|
|
|
var qToS = this.quadrilateralToSquare(x0, y0, x1, y1, x2, y2, x3, y3);
|
|
var sToQ = this.squareToQuadrilateral(x0p, y0p, x1p, y1p, x2p, y2p, x3p, y3p);
|
|
return sToQ.times(qToS);
|
|
}
|
|
|
|
PerspectiveTransform.squareToQuadrilateral=function( x0, y0, x1, y1, x2, y2, x3, y3)
|
|
{
|
|
dy2 = y3 - y2;
|
|
dy3 = y0 - y1 + y2 - y3;
|
|
if (dy2 == 0.0 && dy3 == 0.0)
|
|
{
|
|
return new PerspectiveTransform(x1 - x0, x2 - x1, x0, y1 - y0, y2 - y1, y0, 0.0, 0.0, 1.0);
|
|
}
|
|
else
|
|
{
|
|
dx1 = x1 - x2;
|
|
dx2 = x3 - x2;
|
|
dx3 = x0 - x1 + x2 - x3;
|
|
dy1 = y1 - y2;
|
|
denominator = dx1 * dy2 - dx2 * dy1;
|
|
a13 = (dx3 * dy2 - dx2 * dy3) / denominator;
|
|
a23 = (dx1 * dy3 - dx3 * dy1) / denominator;
|
|
return new PerspectiveTransform(x1 - x0 + a13 * x1, x3 - x0 + a23 * x3, x0, y1 - y0 + a13 * y1, y3 - y0 + a23 * y3, y0, a13, a23, 1.0);
|
|
}
|
|
}
|
|
|
|
PerspectiveTransform.quadrilateralToSquare=function( x0, y0, x1, y1, x2, y2, x3, y3)
|
|
{
|
|
// Here, the adjoint serves as the inverse:
|
|
return this.squareToQuadrilateral(x0, y0, x1, y1, x2, y2, x3, y3).buildAdjoint();
|
|
}
|
|
|
|
function DetectorResult(bits, points)
|
|
{
|
|
this.bits = bits;
|
|
this.points = points;
|
|
}
|
|
|
|
|
|
function Detector(image)
|
|
{
|
|
this.image=image;
|
|
this.resultPointCallback = null;
|
|
|
|
this.sizeOfBlackWhiteBlackRun=function( fromX, fromY, toX, toY)
|
|
{
|
|
// Mild variant of Bresenham's algorithm;
|
|
// see http://en.wikipedia.org/wiki/Bresenham's_line_algorithm
|
|
var steep = Math.abs(toY - fromY) > Math.abs(toX - fromX);
|
|
if (steep)
|
|
{
|
|
var temp = fromX;
|
|
fromX = fromY;
|
|
fromY = temp;
|
|
temp = toX;
|
|
toX = toY;
|
|
toY = temp;
|
|
}
|
|
|
|
var dx = Math.abs(toX - fromX);
|
|
var dy = Math.abs(toY - fromY);
|
|
var error = - dx >> 1;
|
|
var ystep = fromY < toY?1:- 1;
|
|
var xstep = fromX < toX?1:- 1;
|
|
var state = 0; // In black pixels, looking for white, first or second time
|
|
for (var x = fromX, y = fromY; x != toX; x += xstep)
|
|
{
|
|
|
|
var realX = steep?y:x;
|
|
var realY = steep?x:y;
|
|
if (state == 1)
|
|
{
|
|
// In white pixels, looking for black
|
|
if (this.image[realX + realY*qrcode.width])
|
|
{
|
|
state++;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (!this.image[realX + realY*qrcode.width])
|
|
{
|
|
state++;
|
|
}
|
|
}
|
|
|
|
if (state == 3)
|
|
{
|
|
// Found black, white, black, and stumbled back onto white; done
|
|
var diffX = x - fromX;
|
|
var diffY = y - fromY;
|
|
return Math.sqrt( (diffX * diffX + diffY * diffY));
|
|
}
|
|
error += dy;
|
|
if (error > 0)
|
|
{
|
|
if (y == toY)
|
|
{
|
|
break;
|
|
}
|
|
y += ystep;
|
|
error -= dx;
|
|
}
|
|
}
|
|
var diffX2 = toX - fromX;
|
|
var diffY2 = toY - fromY;
|
|
return Math.sqrt( (diffX2 * diffX2 + diffY2 * diffY2));
|
|
}
|
|
|
|
|
|
this.sizeOfBlackWhiteBlackRunBothWays=function( fromX, fromY, toX, toY)
|
|
{
|
|
|
|
var result = this.sizeOfBlackWhiteBlackRun(fromX, fromY, toX, toY);
|
|
|
|
// Now count other way -- don't run off image though of course
|
|
var scale = 1.0;
|
|
var otherToX = fromX - (toX - fromX);
|
|
if (otherToX < 0)
|
|
{
|
|
scale = fromX / (fromX - otherToX);
|
|
otherToX = 0;
|
|
}
|
|
else if (otherToX >= qrcode.width)
|
|
{
|
|
scale = (qrcode.width - 1 - fromX) / (otherToX - fromX);
|
|
otherToX = qrcode.width - 1;
|
|
}
|
|
var otherToY = Math.floor (fromY - (toY - fromY) * scale);
|
|
|
|
scale = 1.0;
|
|
if (otherToY < 0)
|
|
{
|
|
scale = fromY / (fromY - otherToY);
|
|
otherToY = 0;
|
|
}
|
|
else if (otherToY >= qrcode.height)
|
|
{
|
|
scale = (qrcode.height - 1 - fromY) / (otherToY - fromY);
|
|
otherToY = qrcode.height - 1;
|
|
}
|
|
otherToX = Math.floor (fromX + (otherToX - fromX) * scale);
|
|
|
|
result += this.sizeOfBlackWhiteBlackRun(fromX, fromY, otherToX, otherToY);
|
|
return result - 1.0; // -1 because we counted the middle pixel twice
|
|
}
|
|
|
|
|
|
|
|
this.calculateModuleSizeOneWay=function( pattern, otherPattern)
|
|
{
|
|
var moduleSizeEst1 = this.sizeOfBlackWhiteBlackRunBothWays(Math.floor( pattern.X), Math.floor( pattern.Y), Math.floor( otherPattern.X), Math.floor(otherPattern.Y));
|
|
var moduleSizeEst2 = this.sizeOfBlackWhiteBlackRunBothWays(Math.floor(otherPattern.X), Math.floor(otherPattern.Y), Math.floor( pattern.X), Math.floor(pattern.Y));
|
|
if (isNaN(moduleSizeEst1))
|
|
{
|
|
return moduleSizeEst2 / 7.0;
|
|
}
|
|
if (isNaN(moduleSizeEst2))
|
|
{
|
|
return moduleSizeEst1 / 7.0;
|
|
}
|
|
// Average them, and divide by 7 since we've counted the width of 3 black modules,
|
|
// and 1 white and 1 black module on either side. Ergo, divide sum by 14.
|
|
return (moduleSizeEst1 + moduleSizeEst2) / 14.0;
|
|
}
|
|
|
|
|
|
this.calculateModuleSize=function( topLeft, topRight, bottomLeft)
|
|
{
|
|
// Take the average
|
|
return (this.calculateModuleSizeOneWay(topLeft, topRight) + this.calculateModuleSizeOneWay(topLeft, bottomLeft)) / 2.0;
|
|
}
|
|
|
|
this.distance=function( pattern1, pattern2)
|
|
{
|
|
xDiff = pattern1.X - pattern2.X;
|
|
yDiff = pattern1.Y - pattern2.Y;
|
|
return Math.sqrt( (xDiff * xDiff + yDiff * yDiff));
|
|
}
|
|
this.computeDimension=function( topLeft, topRight, bottomLeft, moduleSize)
|
|
{
|
|
|
|
var tltrCentersDimension = Math.round(this.distance(topLeft, topRight) / moduleSize);
|
|
var tlblCentersDimension = Math.round(this.distance(topLeft, bottomLeft) / moduleSize);
|
|
var dimension = ((tltrCentersDimension + tlblCentersDimension) >> 1) + 7;
|
|
switch (dimension & 0x03)
|
|
{
|
|
|
|
// mod 4
|
|
case 0:
|
|
dimension++;
|
|
break;
|
|
// 1? do nothing
|
|
|
|
case 2:
|
|
dimension--;
|
|
break;
|
|
|
|
case 3:
|
|
throw "Error";
|
|
}
|
|
return dimension;
|
|
}
|
|
|
|
this.findAlignmentInRegion=function( overallEstModuleSize, estAlignmentX, estAlignmentY, allowanceFactor)
|
|
{
|
|
// Look for an alignment pattern (3 modules in size) around where it
|
|
// should be
|
|
var allowance = Math.floor (allowanceFactor * overallEstModuleSize);
|
|
var alignmentAreaLeftX = Math.max(0, estAlignmentX - allowance);
|
|
var alignmentAreaRightX = Math.min(qrcode.width - 1, estAlignmentX + allowance);
|
|
if (alignmentAreaRightX - alignmentAreaLeftX < overallEstModuleSize * 3)
|
|
{
|
|
throw "Error";
|
|
}
|
|
|
|
var alignmentAreaTopY = Math.max(0, estAlignmentY - allowance);
|
|
var alignmentAreaBottomY = Math.min(qrcode.height - 1, estAlignmentY + allowance);
|
|
|
|
var alignmentFinder = new AlignmentPatternFinder(this.image, alignmentAreaLeftX, alignmentAreaTopY, alignmentAreaRightX - alignmentAreaLeftX, alignmentAreaBottomY - alignmentAreaTopY, overallEstModuleSize, this.resultPointCallback);
|
|
return alignmentFinder.find();
|
|
}
|
|
|
|
this.createTransform=function( topLeft, topRight, bottomLeft, alignmentPattern, dimension)
|
|
{
|
|
var dimMinusThree = dimension - 3.5;
|
|
var bottomRightX;
|
|
var bottomRightY;
|
|
var sourceBottomRightX;
|
|
var sourceBottomRightY;
|
|
if (alignmentPattern != null)
|
|
{
|
|
bottomRightX = alignmentPattern.X;
|
|
bottomRightY = alignmentPattern.Y;
|
|
sourceBottomRightX = sourceBottomRightY = dimMinusThree - 3.0;
|
|
}
|
|
else
|
|
{
|
|
// Don't have an alignment pattern, just make up the bottom-right point
|
|
bottomRightX = (topRight.X - topLeft.X) + bottomLeft.X;
|
|
bottomRightY = (topRight.Y - topLeft.Y) + bottomLeft.Y;
|
|
sourceBottomRightX = sourceBottomRightY = dimMinusThree;
|
|
}
|
|
|
|
var transform = PerspectiveTransform.quadrilateralToQuadrilateral(3.5, 3.5, dimMinusThree, 3.5, sourceBottomRightX, sourceBottomRightY, 3.5, dimMinusThree, topLeft.X, topLeft.Y, topRight.X, topRight.Y, bottomRightX, bottomRightY, bottomLeft.X, bottomLeft.Y);
|
|
|
|
return transform;
|
|
}
|
|
|
|
this.sampleGrid=function( image, transform, dimension)
|
|
{
|
|
|
|
var sampler = GridSampler;
|
|
return sampler.sampleGrid3(image, dimension, transform);
|
|
}
|
|
|
|
this.processFinderPatternInfo = function( info)
|
|
{
|
|
|
|
var topLeft = info.TopLeft;
|
|
var topRight = info.TopRight;
|
|
var bottomLeft = info.BottomLeft;
|
|
|
|
var moduleSize = this.calculateModuleSize(topLeft, topRight, bottomLeft);
|
|
if (moduleSize < 1.0)
|
|
{
|
|
throw "Error";
|
|
}
|
|
var dimension = this.computeDimension(topLeft, topRight, bottomLeft, moduleSize);
|
|
var provisionalVersion = Version.getProvisionalVersionForDimension(dimension);
|
|
var modulesBetweenFPCenters = provisionalVersion.DimensionForVersion - 7;
|
|
|
|
var alignmentPattern = null;
|
|
// Anything above version 1 has an alignment pattern
|
|
if (provisionalVersion.AlignmentPatternCenters.length > 0)
|
|
{
|
|
|
|
// Guess where a "bottom right" finder pattern would have been
|
|
var bottomRightX = topRight.X - topLeft.X + bottomLeft.X;
|
|
var bottomRightY = topRight.Y - topLeft.Y + bottomLeft.Y;
|
|
|
|
// Estimate that alignment pattern is closer by 3 modules
|
|
// from "bottom right" to known top left location
|
|
var correctionToTopLeft = 1.0 - 3.0 / modulesBetweenFPCenters;
|
|
var estAlignmentX = Math.floor (topLeft.X + correctionToTopLeft * (bottomRightX - topLeft.X));
|
|
var estAlignmentY = Math.floor (topLeft.Y + correctionToTopLeft * (bottomRightY - topLeft.Y));
|
|
|
|
// Kind of arbitrary -- expand search radius before giving up
|
|
for (var i = 4; i <= 16; i <<= 1)
|
|
{
|
|
//try
|
|
//{
|
|
alignmentPattern = this.findAlignmentInRegion(moduleSize, estAlignmentX, estAlignmentY, i);
|
|
break;
|
|
//}
|
|
//catch (re)
|
|
//{
|
|
// try next round
|
|
//}
|
|
}
|
|
// If we didn't find alignment pattern... well try anyway without it
|
|
}
|
|
|
|
var transform = this.createTransform(topLeft, topRight, bottomLeft, alignmentPattern, dimension);
|
|
|
|
var bits = this.sampleGrid(this.image, transform, dimension);
|
|
|
|
var points;
|
|
if (alignmentPattern == null)
|
|
{
|
|
points = new Array(bottomLeft, topLeft, topRight);
|
|
}
|
|
else
|
|
{
|
|
points = new Array(bottomLeft, topLeft, topRight, alignmentPattern);
|
|
}
|
|
return new DetectorResult(bits, points);
|
|
}
|
|
|
|
|
|
|
|
this.detect=function()
|
|
{
|
|
var info = new FinderPatternFinder().findFinderPattern(this.image);
|
|
|
|
return this.processFinderPatternInfo(info);
|
|
}
|
|
}
|
|
// Source: public/src/js/jsqrcode/formatinf.js
|
|
/*
|
|
Ported to JavaScript by Lazar Laszlo 2011
|
|
|
|
lazarsoft@gmail.com, www.lazarsoft.info
|
|
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
var FORMAT_INFO_MASK_QR = 0x5412;
|
|
var FORMAT_INFO_DECODE_LOOKUP = new Array(new Array(0x5412, 0x00), new Array(0x5125, 0x01), new Array(0x5E7C, 0x02), new Array(0x5B4B, 0x03), new Array(0x45F9, 0x04), new Array(0x40CE, 0x05), new Array(0x4F97, 0x06), new Array(0x4AA0, 0x07), new Array(0x77C4, 0x08), new Array(0x72F3, 0x09), new Array(0x7DAA, 0x0A), new Array(0x789D, 0x0B), new Array(0x662F, 0x0C), new Array(0x6318, 0x0D), new Array(0x6C41, 0x0E), new Array(0x6976, 0x0F), new Array(0x1689, 0x10), new Array(0x13BE, 0x11), new Array(0x1CE7, 0x12), new Array(0x19D0, 0x13), new Array(0x0762, 0x14), new Array(0x0255, 0x15), new Array(0x0D0C, 0x16), new Array(0x083B, 0x17), new Array(0x355F, 0x18), new Array(0x3068, 0x19), new Array(0x3F31, 0x1A), new Array(0x3A06, 0x1B), new Array(0x24B4, 0x1C), new Array(0x2183, 0x1D), new Array(0x2EDA, 0x1E), new Array(0x2BED, 0x1F));
|
|
var BITS_SET_IN_HALF_BYTE = new Array(0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4);
|
|
|
|
|
|
function FormatInformation(formatInfo)
|
|
{
|
|
this.errorCorrectionLevel = ErrorCorrectionLevel.forBits((formatInfo >> 3) & 0x03);
|
|
this.dataMask = (formatInfo & 0x07);
|
|
|
|
this.__defineGetter__("ErrorCorrectionLevel", function()
|
|
{
|
|
return this.errorCorrectionLevel;
|
|
});
|
|
this.__defineGetter__("DataMask", function()
|
|
{
|
|
return this.dataMask;
|
|
});
|
|
this.GetHashCode=function()
|
|
{
|
|
return (this.errorCorrectionLevel.ordinal() << 3) | dataMask;
|
|
}
|
|
this.Equals=function( o)
|
|
{
|
|
var other = o;
|
|
return this.errorCorrectionLevel == other.errorCorrectionLevel && this.dataMask == other.dataMask;
|
|
}
|
|
}
|
|
|
|
FormatInformation.numBitsDiffering=function( a, b)
|
|
{
|
|
a ^= b; // a now has a 1 bit exactly where its bit differs with b's
|
|
// Count bits set quickly with a series of lookups:
|
|
return BITS_SET_IN_HALF_BYTE[a & 0x0F] + BITS_SET_IN_HALF_BYTE[(URShift(a, 4) & 0x0F)] + BITS_SET_IN_HALF_BYTE[(URShift(a, 8) & 0x0F)] + BITS_SET_IN_HALF_BYTE[(URShift(a, 12) & 0x0F)] + BITS_SET_IN_HALF_BYTE[(URShift(a, 16) & 0x0F)] + BITS_SET_IN_HALF_BYTE[(URShift(a, 20) & 0x0F)] + BITS_SET_IN_HALF_BYTE[(URShift(a, 24) & 0x0F)] + BITS_SET_IN_HALF_BYTE[(URShift(a, 28) & 0x0F)];
|
|
}
|
|
|
|
FormatInformation.decodeFormatInformation=function( maskedFormatInfo)
|
|
{
|
|
var formatInfo = FormatInformation.doDecodeFormatInformation(maskedFormatInfo);
|
|
if (formatInfo != null)
|
|
{
|
|
return formatInfo;
|
|
}
|
|
// Should return null, but, some QR codes apparently
|
|
// do not mask this info. Try again by actually masking the pattern
|
|
// first
|
|
return FormatInformation.doDecodeFormatInformation(maskedFormatInfo ^ FORMAT_INFO_MASK_QR);
|
|
}
|
|
FormatInformation.doDecodeFormatInformation=function( maskedFormatInfo)
|
|
{
|
|
// Find the int in FORMAT_INFO_DECODE_LOOKUP with fewest bits differing
|
|
var bestDifference = 0xffffffff;
|
|
var bestFormatInfo = 0;
|
|
for (var i = 0; i < FORMAT_INFO_DECODE_LOOKUP.length; i++)
|
|
{
|
|
var decodeInfo = FORMAT_INFO_DECODE_LOOKUP[i];
|
|
var targetInfo = decodeInfo[0];
|
|
if (targetInfo == maskedFormatInfo)
|
|
{
|
|
// Found an exact match
|
|
return new FormatInformation(decodeInfo[1]);
|
|
}
|
|
var bitsDifference = this.numBitsDiffering(maskedFormatInfo, targetInfo);
|
|
if (bitsDifference < bestDifference)
|
|
{
|
|
bestFormatInfo = decodeInfo[1];
|
|
bestDifference = bitsDifference;
|
|
}
|
|
}
|
|
// Hamming distance of the 32 masked codes is 7, by construction, so <= 3 bits
|
|
// differing means we found a match
|
|
if (bestDifference <= 3)
|
|
{
|
|
return new FormatInformation(bestFormatInfo);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
|
|
// Source: public/src/js/jsqrcode/errorlevel.js
|
|
/*
|
|
Ported to JavaScript by Lazar Laszlo 2011
|
|
|
|
lazarsoft@gmail.com, www.lazarsoft.info
|
|
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
function ErrorCorrectionLevel(ordinal, bits, name)
|
|
{
|
|
this.ordinal_Renamed_Field = ordinal;
|
|
this.bits = bits;
|
|
this.name = name;
|
|
this.__defineGetter__("Bits", function()
|
|
{
|
|
return this.bits;
|
|
});
|
|
this.__defineGetter__("Name", function()
|
|
{
|
|
return this.name;
|
|
});
|
|
this.ordinal=function()
|
|
{
|
|
return this.ordinal_Renamed_Field;
|
|
}
|
|
}
|
|
|
|
ErrorCorrectionLevel.forBits=function( bits)
|
|
{
|
|
if (bits < 0 || bits >= FOR_BITS.length)
|
|
{
|
|
throw "ArgumentException";
|
|
}
|
|
return FOR_BITS[bits];
|
|
}
|
|
|
|
var L = new ErrorCorrectionLevel(0, 0x01, "L");
|
|
var M = new ErrorCorrectionLevel(1, 0x00, "M");
|
|
var Q = new ErrorCorrectionLevel(2, 0x03, "Q");
|
|
var H = new ErrorCorrectionLevel(3, 0x02, "H");
|
|
var FOR_BITS = new Array( M, L, H, Q);
|
|
|
|
// Source: public/src/js/jsqrcode/bitmat.js
|
|
/*
|
|
Ported to JavaScript by Lazar Laszlo 2011
|
|
|
|
lazarsoft@gmail.com, www.lazarsoft.info
|
|
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
function BitMatrix( width, height)
|
|
{
|
|
if(!height)
|
|
height=width;
|
|
if (width < 1 || height < 1)
|
|
{
|
|
throw "Both dimensions must be greater than 0";
|
|
}
|
|
this.width = width;
|
|
this.height = height;
|
|
var rowSize = width >> 5;
|
|
if ((width & 0x1f) != 0)
|
|
{
|
|
rowSize++;
|
|
}
|
|
this.rowSize = rowSize;
|
|
this.bits = new Array(rowSize * height);
|
|
for(var i=0;i<this.bits.length;i++)
|
|
this.bits[i]=0;
|
|
|
|
this.__defineGetter__("Width", function()
|
|
{
|
|
return this.width;
|
|
});
|
|
this.__defineGetter__("Height", function()
|
|
{
|
|
return this.height;
|
|
});
|
|
this.__defineGetter__("Dimension", function()
|
|
{
|
|
if (this.width != this.height)
|
|
{
|
|
throw "Can't call getDimension() on a non-square matrix";
|
|
}
|
|
return this.width;
|
|
});
|
|
|
|
this.get_Renamed=function( x, y)
|
|
{
|
|
var offset = y * this.rowSize + (x >> 5);
|
|
return ((URShift(this.bits[offset], (x & 0x1f))) & 1) != 0;
|
|
}
|
|
this.set_Renamed=function( x, y)
|
|
{
|
|
var offset = y * this.rowSize + (x >> 5);
|
|
this.bits[offset] |= 1 << (x & 0x1f);
|
|
}
|
|
this.flip=function( x, y)
|
|
{
|
|
var offset = y * this.rowSize + (x >> 5);
|
|
this.bits[offset] ^= 1 << (x & 0x1f);
|
|
}
|
|
this.clear=function()
|
|
{
|
|
var max = this.bits.length;
|
|
for (var i = 0; i < max; i++)
|
|
{
|
|
this.bits[i] = 0;
|
|
}
|
|
}
|
|
this.setRegion=function( left, top, width, height)
|
|
{
|
|
if (top < 0 || left < 0)
|
|
{
|
|
throw "Left and top must be nonnegative";
|
|
}
|
|
if (height < 1 || width < 1)
|
|
{
|
|
throw "Height and width must be at least 1";
|
|
}
|
|
var right = left + width;
|
|
var bottom = top + height;
|
|
if (bottom > this.height || right > this.width)
|
|
{
|
|
throw "The region must fit inside the matrix";
|
|
}
|
|
for (var y = top; y < bottom; y++)
|
|
{
|
|
var offset = y * this.rowSize;
|
|
for (var x = left; x < right; x++)
|
|
{
|
|
this.bits[offset + (x >> 5)] |= 1 << (x & 0x1f);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// Source: public/src/js/jsqrcode/datablock.js
|
|
/*
|
|
Ported to JavaScript by Lazar Laszlo 2011
|
|
|
|
lazarsoft@gmail.com, www.lazarsoft.info
|
|
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
function DataBlock(numDataCodewords, codewords)
|
|
{
|
|
this.numDataCodewords = numDataCodewords;
|
|
this.codewords = codewords;
|
|
|
|
this.__defineGetter__("NumDataCodewords", function()
|
|
{
|
|
return this.numDataCodewords;
|
|
});
|
|
this.__defineGetter__("Codewords", function()
|
|
{
|
|
return this.codewords;
|
|
});
|
|
}
|
|
|
|
DataBlock.getDataBlocks=function(rawCodewords, version, ecLevel)
|
|
{
|
|
|
|
if (rawCodewords.length != version.TotalCodewords)
|
|
{
|
|
throw "ArgumentException";
|
|
}
|
|
|
|
// Figure out the number and size of data blocks used by this version and
|
|
// error correction level
|
|
var ecBlocks = version.getECBlocksForLevel(ecLevel);
|
|
|
|
// First count the total number of data blocks
|
|
var totalBlocks = 0;
|
|
var ecBlockArray = ecBlocks.getECBlocks();
|
|
for (var i = 0; i < ecBlockArray.length; i++)
|
|
{
|
|
totalBlocks += ecBlockArray[i].Count;
|
|
}
|
|
|
|
// Now establish DataBlocks of the appropriate size and number of data codewords
|
|
var result = new Array(totalBlocks);
|
|
var numResultBlocks = 0;
|
|
for (var j = 0; j < ecBlockArray.length; j++)
|
|
{
|
|
var ecBlock = ecBlockArray[j];
|
|
for (var i = 0; i < ecBlock.Count; i++)
|
|
{
|
|
var numDataCodewords = ecBlock.DataCodewords;
|
|
var numBlockCodewords = ecBlocks.ECCodewordsPerBlock + numDataCodewords;
|
|
result[numResultBlocks++] = new DataBlock(numDataCodewords, new Array(numBlockCodewords));
|
|
}
|
|
}
|
|
|
|
// All blocks have the same amount of data, except that the last n
|
|
// (where n may be 0) have 1 more byte. Figure out where these start.
|
|
var shorterBlocksTotalCodewords = result[0].codewords.length;
|
|
var longerBlocksStartAt = result.length - 1;
|
|
while (longerBlocksStartAt >= 0)
|
|
{
|
|
var numCodewords = result[longerBlocksStartAt].codewords.length;
|
|
if (numCodewords == shorterBlocksTotalCodewords)
|
|
{
|
|
break;
|
|
}
|
|
longerBlocksStartAt--;
|
|
}
|
|
longerBlocksStartAt++;
|
|
|
|
var shorterBlocksNumDataCodewords = shorterBlocksTotalCodewords - ecBlocks.ECCodewordsPerBlock;
|
|
// The last elements of result may be 1 element longer;
|
|
// first fill out as many elements as all of them have
|
|
var rawCodewordsOffset = 0;
|
|
for (var i = 0; i < shorterBlocksNumDataCodewords; i++)
|
|
{
|
|
for (var j = 0; j < numResultBlocks; j++)
|
|
{
|
|
result[j].codewords[i] = rawCodewords[rawCodewordsOffset++];
|
|
}
|
|
}
|
|
// Fill out the last data block in the longer ones
|
|
for (var j = longerBlocksStartAt; j < numResultBlocks; j++)
|
|
{
|
|
result[j].codewords[shorterBlocksNumDataCodewords] = rawCodewords[rawCodewordsOffset++];
|
|
}
|
|
// Now add in error correction blocks
|
|
var max = result[0].codewords.length;
|
|
for (var i = shorterBlocksNumDataCodewords; i < max; i++)
|
|
{
|
|
for (var j = 0; j < numResultBlocks; j++)
|
|
{
|
|
var iOffset = j < longerBlocksStartAt?i:i + 1;
|
|
result[j].codewords[iOffset] = rawCodewords[rawCodewordsOffset++];
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
// Source: public/src/js/jsqrcode/bmparser.js
|
|
/*
|
|
Ported to JavaScript by Lazar Laszlo 2011
|
|
|
|
lazarsoft@gmail.com, www.lazarsoft.info
|
|
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
function BitMatrixParser(bitMatrix)
|
|
{
|
|
var dimension = bitMatrix.Dimension;
|
|
if (dimension < 21 || (dimension & 0x03) != 1)
|
|
{
|
|
throw "Error BitMatrixParser";
|
|
}
|
|
this.bitMatrix = bitMatrix;
|
|
this.parsedVersion = null;
|
|
this.parsedFormatInfo = null;
|
|
|
|
this.copyBit=function( i, j, versionBits)
|
|
{
|
|
return this.bitMatrix.get_Renamed(i, j)?(versionBits << 1) | 0x1:versionBits << 1;
|
|
}
|
|
|
|
this.readFormatInformation=function()
|
|
{
|
|
if (this.parsedFormatInfo != null)
|
|
{
|
|
return this.parsedFormatInfo;
|
|
}
|
|
|
|
// Read top-left format info bits
|
|
var formatInfoBits = 0;
|
|
for (var i = 0; i < 6; i++)
|
|
{
|
|
formatInfoBits = this.copyBit(i, 8, formatInfoBits);
|
|
}
|
|
// .. and skip a bit in the timing pattern ...
|
|
formatInfoBits = this.copyBit(7, 8, formatInfoBits);
|
|
formatInfoBits = this.copyBit(8, 8, formatInfoBits);
|
|
formatInfoBits = this.copyBit(8, 7, formatInfoBits);
|
|
// .. and skip a bit in the timing pattern ...
|
|
for (var j = 5; j >= 0; j--)
|
|
{
|
|
formatInfoBits = this.copyBit(8, j, formatInfoBits);
|
|
}
|
|
|
|
this.parsedFormatInfo = FormatInformation.decodeFormatInformation(formatInfoBits);
|
|
if (this.parsedFormatInfo != null)
|
|
{
|
|
return this.parsedFormatInfo;
|
|
}
|
|
|
|
// Hmm, failed. Try the top-right/bottom-left pattern
|
|
var dimension = this.bitMatrix.Dimension;
|
|
formatInfoBits = 0;
|
|
var iMin = dimension - 8;
|
|
for (var i = dimension - 1; i >= iMin; i--)
|
|
{
|
|
formatInfoBits = this.copyBit(i, 8, formatInfoBits);
|
|
}
|
|
for (var j = dimension - 7; j < dimension; j++)
|
|
{
|
|
formatInfoBits = this.copyBit(8, j, formatInfoBits);
|
|
}
|
|
|
|
this.parsedFormatInfo = FormatInformation.decodeFormatInformation(formatInfoBits);
|
|
if (this.parsedFormatInfo != null)
|
|
{
|
|
return this.parsedFormatInfo;
|
|
}
|
|
throw "Error readFormatInformation";
|
|
}
|
|
this.readVersion=function()
|
|
{
|
|
|
|
if (this.parsedVersion != null)
|
|
{
|
|
return this.parsedVersion;
|
|
}
|
|
|
|
var dimension = this.bitMatrix.Dimension;
|
|
|
|
var provisionalVersion = (dimension - 17) >> 2;
|
|
if (provisionalVersion <= 6)
|
|
{
|
|
return Version.getVersionForNumber(provisionalVersion);
|
|
}
|
|
|
|
// Read top-right version info: 3 wide by 6 tall
|
|
var versionBits = 0;
|
|
var ijMin = dimension - 11;
|
|
for (var j = 5; j >= 0; j--)
|
|
{
|
|
for (var i = dimension - 9; i >= ijMin; i--)
|
|
{
|
|
versionBits = this.copyBit(i, j, versionBits);
|
|
}
|
|
}
|
|
|
|
this.parsedVersion = Version.decodeVersionInformation(versionBits);
|
|
if (this.parsedVersion != null && this.parsedVersion.DimensionForVersion == dimension)
|
|
{
|
|
return this.parsedVersion;
|
|
}
|
|
|
|
// Hmm, failed. Try bottom left: 6 wide by 3 tall
|
|
versionBits = 0;
|
|
for (var i = 5; i >= 0; i--)
|
|
{
|
|
for (var j = dimension - 9; j >= ijMin; j--)
|
|
{
|
|
versionBits = this.copyBit(i, j, versionBits);
|
|
}
|
|
}
|
|
|
|
this.parsedVersion = Version.decodeVersionInformation(versionBits);
|
|
if (this.parsedVersion != null && this.parsedVersion.DimensionForVersion == dimension)
|
|
{
|
|
return this.parsedVersion;
|
|
}
|
|
throw "Error readVersion";
|
|
}
|
|
this.readCodewords=function()
|
|
{
|
|
|
|
var formatInfo = this.readFormatInformation();
|
|
var version = this.readVersion();
|
|
|
|
// Get the data mask for the format used in this QR Code. This will exclude
|
|
// some bits from reading as we wind through the bit matrix.
|
|
var dataMask = DataMask.forReference( formatInfo.DataMask);
|
|
var dimension = this.bitMatrix.Dimension;
|
|
dataMask.unmaskBitMatrix(this.bitMatrix, dimension);
|
|
|
|
var functionPattern = version.buildFunctionPattern();
|
|
|
|
var readingUp = true;
|
|
var result = new Array(version.TotalCodewords);
|
|
var resultOffset = 0;
|
|
var currentByte = 0;
|
|
var bitsRead = 0;
|
|
// Read columns in pairs, from right to left
|
|
for (var j = dimension - 1; j > 0; j -= 2)
|
|
{
|
|
if (j == 6)
|
|
{
|
|
// Skip whole column with vertical alignment pattern;
|
|
// saves time and makes the other code proceed more cleanly
|
|
j--;
|
|
}
|
|
// Read alternatingly from bottom to top then top to bottom
|
|
for (var count = 0; count < dimension; count++)
|
|
{
|
|
var i = readingUp?dimension - 1 - count:count;
|
|
for (var col = 0; col < 2; col++)
|
|
{
|
|
// Ignore bits covered by the function pattern
|
|
if (!functionPattern.get_Renamed(j - col, i))
|
|
{
|
|
// Read a bit
|
|
bitsRead++;
|
|
currentByte <<= 1;
|
|
if (this.bitMatrix.get_Renamed(j - col, i))
|
|
{
|
|
currentByte |= 1;
|
|
}
|
|
// If we've made a whole byte, save it off
|
|
if (bitsRead == 8)
|
|
{
|
|
result[resultOffset++] = currentByte;
|
|
bitsRead = 0;
|
|
currentByte = 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
readingUp ^= true; // readingUp = !readingUp; // switch directions
|
|
}
|
|
if (resultOffset != version.TotalCodewords)
|
|
{
|
|
throw "Error readCodewords";
|
|
}
|
|
return result;
|
|
}
|
|
}
|
|
// Source: public/src/js/jsqrcode/datamask.js
|
|
/*
|
|
Ported to JavaScript by Lazar Laszlo 2011
|
|
|
|
lazarsoft@gmail.com, www.lazarsoft.info
|
|
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
DataMask = {};
|
|
|
|
DataMask.forReference = function(reference)
|
|
{
|
|
if (reference < 0 || reference > 7)
|
|
{
|
|
throw "System.ArgumentException";
|
|
}
|
|
return DataMask.DATA_MASKS[reference];
|
|
}
|
|
|
|
function DataMask000()
|
|
{
|
|
this.unmaskBitMatrix=function(bits, dimension)
|
|
{
|
|
for (var i = 0; i < dimension; i++)
|
|
{
|
|
for (var j = 0; j < dimension; j++)
|
|
{
|
|
if (this.isMasked(i, j))
|
|
{
|
|
bits.flip(j, i);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
this.isMasked=function( i, j)
|
|
{
|
|
return ((i + j) & 0x01) == 0;
|
|
}
|
|
}
|
|
|
|
function DataMask001()
|
|
{
|
|
this.unmaskBitMatrix=function(bits, dimension)
|
|
{
|
|
for (var i = 0; i < dimension; i++)
|
|
{
|
|
for (var j = 0; j < dimension; j++)
|
|
{
|
|
if (this.isMasked(i, j))
|
|
{
|
|
bits.flip(j, i);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
this.isMasked=function( i, j)
|
|
{
|
|
return (i & 0x01) == 0;
|
|
}
|
|
}
|
|
|
|
function DataMask010()
|
|
{
|
|
this.unmaskBitMatrix=function(bits, dimension)
|
|
{
|
|
for (var i = 0; i < dimension; i++)
|
|
{
|
|
for (var j = 0; j < dimension; j++)
|
|
{
|
|
if (this.isMasked(i, j))
|
|
{
|
|
bits.flip(j, i);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
this.isMasked=function( i, j)
|
|
{
|
|
return j % 3 == 0;
|
|
}
|
|
}
|
|
|
|
function DataMask011()
|
|
{
|
|
this.unmaskBitMatrix=function(bits, dimension)
|
|
{
|
|
for (var i = 0; i < dimension; i++)
|
|
{
|
|
for (var j = 0; j < dimension; j++)
|
|
{
|
|
if (this.isMasked(i, j))
|
|
{
|
|
bits.flip(j, i);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
this.isMasked=function( i, j)
|
|
{
|
|
return (i + j) % 3 == 0;
|
|
}
|
|
}
|
|
|
|
function DataMask100()
|
|
{
|
|
this.unmaskBitMatrix=function(bits, dimension)
|
|
{
|
|
for (var i = 0; i < dimension; i++)
|
|
{
|
|
for (var j = 0; j < dimension; j++)
|
|
{
|
|
if (this.isMasked(i, j))
|
|
{
|
|
bits.flip(j, i);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
this.isMasked=function( i, j)
|
|
{
|
|
return (((URShift(i, 1)) + (j / 3)) & 0x01) == 0;
|
|
}
|
|
}
|
|
|
|
function DataMask101()
|
|
{
|
|
this.unmaskBitMatrix=function(bits, dimension)
|
|
{
|
|
for (var i = 0; i < dimension; i++)
|
|
{
|
|
for (var j = 0; j < dimension; j++)
|
|
{
|
|
if (this.isMasked(i, j))
|
|
{
|
|
bits.flip(j, i);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
this.isMasked=function( i, j)
|
|
{
|
|
var temp = i * j;
|
|
return (temp & 0x01) + (temp % 3) == 0;
|
|
}
|
|
}
|
|
|
|
function DataMask110()
|
|
{
|
|
this.unmaskBitMatrix=function(bits, dimension)
|
|
{
|
|
for (var i = 0; i < dimension; i++)
|
|
{
|
|
for (var j = 0; j < dimension; j++)
|
|
{
|
|
if (this.isMasked(i, j))
|
|
{
|
|
bits.flip(j, i);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
this.isMasked=function( i, j)
|
|
{
|
|
var temp = i * j;
|
|
return (((temp & 0x01) + (temp % 3)) & 0x01) == 0;
|
|
}
|
|
}
|
|
function DataMask111()
|
|
{
|
|
this.unmaskBitMatrix=function(bits, dimension)
|
|
{
|
|
for (var i = 0; i < dimension; i++)
|
|
{
|
|
for (var j = 0; j < dimension; j++)
|
|
{
|
|
if (this.isMasked(i, j))
|
|
{
|
|
bits.flip(j, i);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
this.isMasked=function( i, j)
|
|
{
|
|
return ((((i + j) & 0x01) + ((i * j) % 3)) & 0x01) == 0;
|
|
}
|
|
}
|
|
|
|
DataMask.DATA_MASKS = new Array(new DataMask000(), new DataMask001(), new DataMask010(), new DataMask011(), new DataMask100(), new DataMask101(), new DataMask110(), new DataMask111());
|
|
|
|
|
|
// Source: public/src/js/jsqrcode/rsdecoder.js
|
|
/*
|
|
Ported to JavaScript by Lazar Laszlo 2011
|
|
|
|
lazarsoft@gmail.com, www.lazarsoft.info
|
|
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
function ReedSolomonDecoder(field)
|
|
{
|
|
this.field = field;
|
|
this.decode=function(received, twoS)
|
|
{
|
|
var poly = new GF256Poly(this.field, received);
|
|
var syndromeCoefficients = new Array(twoS);
|
|
for(var i=0;i<syndromeCoefficients.length;i++)syndromeCoefficients[i]=0;
|
|
var dataMatrix = false;//this.field.Equals(GF256.DATA_MATRIX_FIELD);
|
|
var noError = true;
|
|
for (var i = 0; i < twoS; i++)
|
|
{
|
|
// Thanks to sanfordsquires for this fix:
|
|
var eval = poly.evaluateAt(this.field.exp(dataMatrix?i + 1:i));
|
|
syndromeCoefficients[syndromeCoefficients.length - 1 - i] = eval;
|
|
if (eval != 0)
|
|
{
|
|
noError = false;
|
|
}
|
|
}
|
|
if (noError)
|
|
{
|
|
return ;
|
|
}
|
|
var syndrome = new GF256Poly(this.field, syndromeCoefficients);
|
|
var sigmaOmega = this.runEuclideanAlgorithm(this.field.buildMonomial(twoS, 1), syndrome, twoS);
|
|
var sigma = sigmaOmega[0];
|
|
var omega = sigmaOmega[1];
|
|
var errorLocations = this.findErrorLocations(sigma);
|
|
var errorMagnitudes = this.findErrorMagnitudes(omega, errorLocations, dataMatrix);
|
|
for (var i = 0; i < errorLocations.length; i++)
|
|
{
|
|
var position = received.length - 1 - this.field.log(errorLocations[i]);
|
|
if (position < 0)
|
|
{
|
|
throw "ReedSolomonException Bad error location";
|
|
}
|
|
received[position] = GF256.addOrSubtract(received[position], errorMagnitudes[i]);
|
|
}
|
|
}
|
|
|
|
this.runEuclideanAlgorithm=function( a, b, R)
|
|
{
|
|
// Assume a's degree is >= b's
|
|
if (a.Degree < b.Degree)
|
|
{
|
|
var temp = a;
|
|
a = b;
|
|
b = temp;
|
|
}
|
|
|
|
var rLast = a;
|
|
var r = b;
|
|
var sLast = this.field.One;
|
|
var s = this.field.Zero;
|
|
var tLast = this.field.Zero;
|
|
var t = this.field.One;
|
|
|
|
// Run Euclidean algorithm until r's degree is less than R/2
|
|
while (r.Degree >= Math.floor(R / 2))
|
|
{
|
|
var rLastLast = rLast;
|
|
var sLastLast = sLast;
|
|
var tLastLast = tLast;
|
|
rLast = r;
|
|
sLast = s;
|
|
tLast = t;
|
|
|
|
// Divide rLastLast by rLast, with quotient in q and remainder in r
|
|
if (rLast.Zero)
|
|
{
|
|
// Oops, Euclidean algorithm already terminated?
|
|
throw "r_{i-1} was zero";
|
|
}
|
|
r = rLastLast;
|
|
var q = this.field.Zero;
|
|
var denominatorLeadingTerm = rLast.getCoefficient(rLast.Degree);
|
|
var dltInverse = this.field.inverse(denominatorLeadingTerm);
|
|
while (r.Degree >= rLast.Degree && !r.Zero)
|
|
{
|
|
var degreeDiff = r.Degree - rLast.Degree;
|
|
var scale = this.field.multiply(r.getCoefficient(r.Degree), dltInverse);
|
|
q = q.addOrSubtract(this.field.buildMonomial(degreeDiff, scale));
|
|
r = r.addOrSubtract(rLast.multiplyByMonomial(degreeDiff, scale));
|
|
//r.EXE();
|
|
}
|
|
|
|
s = q.multiply1(sLast).addOrSubtract(sLastLast);
|
|
t = q.multiply1(tLast).addOrSubtract(tLastLast);
|
|
}
|
|
|
|
var sigmaTildeAtZero = t.getCoefficient(0);
|
|
if (sigmaTildeAtZero == 0)
|
|
{
|
|
throw "ReedSolomonException sigmaTilde(0) was zero";
|
|
}
|
|
|
|
var inverse = this.field.inverse(sigmaTildeAtZero);
|
|
var sigma = t.multiply2(inverse);
|
|
var omega = r.multiply2(inverse);
|
|
return new Array(sigma, omega);
|
|
}
|
|
this.findErrorLocations=function( errorLocator)
|
|
{
|
|
// This is a direct application of Chien's search
|
|
var numErrors = errorLocator.Degree;
|
|
if (numErrors == 1)
|
|
{
|
|
// shortcut
|
|
return new Array(errorLocator.getCoefficient(1));
|
|
}
|
|
var result = new Array(numErrors);
|
|
var e = 0;
|
|
for (var i = 1; i < 256 && e < numErrors; i++)
|
|
{
|
|
if (errorLocator.evaluateAt(i) == 0)
|
|
{
|
|
result[e] = this.field.inverse(i);
|
|
e++;
|
|
}
|
|
}
|
|
if (e != numErrors)
|
|
{
|
|
throw "Error locator degree does not match number of roots";
|
|
}
|
|
return result;
|
|
}
|
|
this.findErrorMagnitudes=function( errorEvaluator, errorLocations, dataMatrix)
|
|
{
|
|
// This is directly applying Forney's Formula
|
|
var s = errorLocations.length;
|
|
var result = new Array(s);
|
|
for (var i = 0; i < s; i++)
|
|
{
|
|
var xiInverse = this.field.inverse(errorLocations[i]);
|
|
var denominator = 1;
|
|
for (var j = 0; j < s; j++)
|
|
{
|
|
if (i != j)
|
|
{
|
|
denominator = this.field.multiply(denominator, GF256.addOrSubtract(1, this.field.multiply(errorLocations[j], xiInverse)));
|
|
}
|
|
}
|
|
result[i] = this.field.multiply(errorEvaluator.evaluateAt(xiInverse), this.field.inverse(denominator));
|
|
// Thanks to sanfordsquires for this fix:
|
|
if (dataMatrix)
|
|
{
|
|
result[i] = this.field.multiply(result[i], xiInverse);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
}
|
|
// Source: public/src/js/jsqrcode/gf256poly.js
|
|
/*
|
|
Ported to JavaScript by Lazar Laszlo 2011
|
|
|
|
lazarsoft@gmail.com, www.lazarsoft.info
|
|
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
function GF256Poly(field, coefficients)
|
|
{
|
|
if (coefficients == null || coefficients.length == 0)
|
|
{
|
|
throw "System.ArgumentException";
|
|
}
|
|
this.field = field;
|
|
var coefficientsLength = coefficients.length;
|
|
if (coefficientsLength > 1 && coefficients[0] == 0)
|
|
{
|
|
// Leading term must be non-zero for anything except the constant polynomial "0"
|
|
var firstNonZero = 1;
|
|
while (firstNonZero < coefficientsLength && coefficients[firstNonZero] == 0)
|
|
{
|
|
firstNonZero++;
|
|
}
|
|
if (firstNonZero == coefficientsLength)
|
|
{
|
|
this.coefficients = field.Zero.coefficients;
|
|
}
|
|
else
|
|
{
|
|
this.coefficients = new Array(coefficientsLength - firstNonZero);
|
|
for(var i=0;i<this.coefficients.length;i++)this.coefficients[i]=0;
|
|
//Array.Copy(coefficients, firstNonZero, this.coefficients, 0, this.coefficients.length);
|
|
for(var ci=0;ci<this.coefficients.length;ci++)this.coefficients[ci]=coefficients[firstNonZero+ci];
|
|
}
|
|
}
|
|
else
|
|
{
|
|
this.coefficients = coefficients;
|
|
}
|
|
|
|
this.__defineGetter__("Zero", function()
|
|
{
|
|
return this.coefficients[0] == 0;
|
|
});
|
|
this.__defineGetter__("Degree", function()
|
|
{
|
|
return this.coefficients.length - 1;
|
|
});
|
|
this.__defineGetter__("Coefficients", function()
|
|
{
|
|
return this.coefficients;
|
|
});
|
|
|
|
this.getCoefficient=function( degree)
|
|
{
|
|
return this.coefficients[this.coefficients.length - 1 - degree];
|
|
}
|
|
|
|
this.evaluateAt=function( a)
|
|
{
|
|
if (a == 0)
|
|
{
|
|
// Just return the x^0 coefficient
|
|
return this.getCoefficient(0);
|
|
}
|
|
var size = this.coefficients.length;
|
|
if (a == 1)
|
|
{
|
|
// Just the sum of the coefficients
|
|
var result = 0;
|
|
for (var i = 0; i < size; i++)
|
|
{
|
|
result = GF256.addOrSubtract(result, this.coefficients[i]);
|
|
}
|
|
return result;
|
|
}
|
|
var result2 = this.coefficients[0];
|
|
for (var i = 1; i < size; i++)
|
|
{
|
|
result2 = GF256.addOrSubtract(this.field.multiply(a, result2), this.coefficients[i]);
|
|
}
|
|
return result2;
|
|
}
|
|
|
|
this.addOrSubtract=function( other)
|
|
{
|
|
if (this.field != other.field)
|
|
{
|
|
throw "GF256Polys do not have same GF256 field";
|
|
}
|
|
if (this.Zero)
|
|
{
|
|
return other;
|
|
}
|
|
if (other.Zero)
|
|
{
|
|
return this;
|
|
}
|
|
|
|
var smallerCoefficients = this.coefficients;
|
|
var largerCoefficients = other.coefficients;
|
|
if (smallerCoefficients.length > largerCoefficients.length)
|
|
{
|
|
var temp = smallerCoefficients;
|
|
smallerCoefficients = largerCoefficients;
|
|
largerCoefficients = temp;
|
|
}
|
|
var sumDiff = new Array(largerCoefficients.length);
|
|
var lengthDiff = largerCoefficients.length - smallerCoefficients.length;
|
|
// Copy high-order terms only found in higher-degree polynomial's coefficients
|
|
//Array.Copy(largerCoefficients, 0, sumDiff, 0, lengthDiff);
|
|
for(var ci=0;ci<lengthDiff;ci++)sumDiff[ci]=largerCoefficients[ci];
|
|
|
|
for (var i = lengthDiff; i < largerCoefficients.length; i++)
|
|
{
|
|
sumDiff[i] = GF256.addOrSubtract(smallerCoefficients[i - lengthDiff], largerCoefficients[i]);
|
|
}
|
|
|
|
return new GF256Poly(field, sumDiff);
|
|
}
|
|
this.multiply1=function( other)
|
|
{
|
|
if (this.field!=other.field)
|
|
{
|
|
throw "GF256Polys do not have same GF256 field";
|
|
}
|
|
if (this.Zero || other.Zero)
|
|
{
|
|
return this.field.Zero;
|
|
}
|
|
var aCoefficients = this.coefficients;
|
|
var aLength = aCoefficients.length;
|
|
var bCoefficients = other.coefficients;
|
|
var bLength = bCoefficients.length;
|
|
var product = new Array(aLength + bLength - 1);
|
|
for (var i = 0; i < aLength; i++)
|
|
{
|
|
var aCoeff = aCoefficients[i];
|
|
for (var j = 0; j < bLength; j++)
|
|
{
|
|
product[i + j] = GF256.addOrSubtract(product[i + j], this.field.multiply(aCoeff, bCoefficients[j]));
|
|
}
|
|
}
|
|
return new GF256Poly(this.field, product);
|
|
}
|
|
this.multiply2=function( scalar)
|
|
{
|
|
if (scalar == 0)
|
|
{
|
|
return this.field.Zero;
|
|
}
|
|
if (scalar == 1)
|
|
{
|
|
return this;
|
|
}
|
|
var size = this.coefficients.length;
|
|
var product = new Array(size);
|
|
for (var i = 0; i < size; i++)
|
|
{
|
|
product[i] = this.field.multiply(this.coefficients[i], scalar);
|
|
}
|
|
return new GF256Poly(this.field, product);
|
|
}
|
|
this.multiplyByMonomial=function( degree, coefficient)
|
|
{
|
|
if (degree < 0)
|
|
{
|
|
throw "System.ArgumentException";
|
|
}
|
|
if (coefficient == 0)
|
|
{
|
|
return this.field.Zero;
|
|
}
|
|
var size = this.coefficients.length;
|
|
var product = new Array(size + degree);
|
|
for(var i=0;i<product.length;i++)product[i]=0;
|
|
for (var i = 0; i < size; i++)
|
|
{
|
|
product[i] = this.field.multiply(this.coefficients[i], coefficient);
|
|
}
|
|
return new GF256Poly(this.field, product);
|
|
}
|
|
this.divide=function( other)
|
|
{
|
|
if (this.field!=other.field)
|
|
{
|
|
throw "GF256Polys do not have same GF256 field";
|
|
}
|
|
if (other.Zero)
|
|
{
|
|
throw "Divide by 0";
|
|
}
|
|
|
|
var quotient = this.field.Zero;
|
|
var remainder = this;
|
|
|
|
var denominatorLeadingTerm = other.getCoefficient(other.Degree);
|
|
var inverseDenominatorLeadingTerm = this.field.inverse(denominatorLeadingTerm);
|
|
|
|
while (remainder.Degree >= other.Degree && !remainder.Zero)
|
|
{
|
|
var degreeDifference = remainder.Degree - other.Degree;
|
|
var scale = this.field.multiply(remainder.getCoefficient(remainder.Degree), inverseDenominatorLeadingTerm);
|
|
var term = other.multiplyByMonomial(degreeDifference, scale);
|
|
var iterationQuotient = this.field.buildMonomial(degreeDifference, scale);
|
|
quotient = quotient.addOrSubtract(iterationQuotient);
|
|
remainder = remainder.addOrSubtract(term);
|
|
}
|
|
|
|
return new Array(quotient, remainder);
|
|
}
|
|
}
|
|
// Source: public/src/js/jsqrcode/gf256.js
|
|
/*
|
|
Ported to JavaScript by Lazar Laszlo 2011
|
|
|
|
lazarsoft@gmail.com, www.lazarsoft.info
|
|
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
function GF256( primitive)
|
|
{
|
|
this.expTable = new Array(256);
|
|
this.logTable = new Array(256);
|
|
var x = 1;
|
|
for (var i = 0; i < 256; i++)
|
|
{
|
|
this.expTable[i] = x;
|
|
x <<= 1; // x = x * 2; we're assuming the generator alpha is 2
|
|
if (x >= 0x100)
|
|
{
|
|
x ^= primitive;
|
|
}
|
|
}
|
|
for (var i = 0; i < 255; i++)
|
|
{
|
|
this.logTable[this.expTable[i]] = i;
|
|
}
|
|
// logTable[0] == 0 but this should never be used
|
|
var at0=new Array(1);at0[0]=0;
|
|
this.zero = new GF256Poly(this, new Array(at0));
|
|
var at1=new Array(1);at1[0]=1;
|
|
this.one = new GF256Poly(this, new Array(at1));
|
|
|
|
this.__defineGetter__("Zero", function()
|
|
{
|
|
return this.zero;
|
|
});
|
|
this.__defineGetter__("One", function()
|
|
{
|
|
return this.one;
|
|
});
|
|
this.buildMonomial=function( degree, coefficient)
|
|
{
|
|
if (degree < 0)
|
|
{
|
|
throw "System.ArgumentException";
|
|
}
|
|
if (coefficient == 0)
|
|
{
|
|
return zero;
|
|
}
|
|
var coefficients = new Array(degree + 1);
|
|
for(var i=0;i<coefficients.length;i++)coefficients[i]=0;
|
|
coefficients[0] = coefficient;
|
|
return new GF256Poly(this, coefficients);
|
|
}
|
|
this.exp=function( a)
|
|
{
|
|
return this.expTable[a];
|
|
}
|
|
this.log=function( a)
|
|
{
|
|
if (a == 0)
|
|
{
|
|
throw "System.ArgumentException";
|
|
}
|
|
return this.logTable[a];
|
|
}
|
|
this.inverse=function( a)
|
|
{
|
|
if (a == 0)
|
|
{
|
|
throw "System.ArithmeticException";
|
|
}
|
|
return this.expTable[255 - this.logTable[a]];
|
|
}
|
|
this.multiply=function( a, b)
|
|
{
|
|
if (a == 0 || b == 0)
|
|
{
|
|
return 0;
|
|
}
|
|
if (a == 1)
|
|
{
|
|
return b;
|
|
}
|
|
if (b == 1)
|
|
{
|
|
return a;
|
|
}
|
|
return this.expTable[(this.logTable[a] + this.logTable[b]) % 255];
|
|
}
|
|
}
|
|
|
|
GF256.QR_CODE_FIELD = new GF256(0x011D);
|
|
GF256.DATA_MATRIX_FIELD = new GF256(0x012D);
|
|
|
|
GF256.addOrSubtract=function( a, b)
|
|
{
|
|
return a ^ b;
|
|
}
|
|
// Source: public/src/js/jsqrcode/decoder.js
|
|
/*
|
|
Ported to JavaScript by Lazar Laszlo 2011
|
|
|
|
lazarsoft@gmail.com, www.lazarsoft.info
|
|
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
Decoder={};
|
|
Decoder.rsDecoder = new ReedSolomonDecoder(GF256.QR_CODE_FIELD);
|
|
|
|
Decoder.correctErrors=function( codewordBytes, numDataCodewords)
|
|
{
|
|
var numCodewords = codewordBytes.length;
|
|
// First read into an array of ints
|
|
var codewordsInts = new Array(numCodewords);
|
|
for (var i = 0; i < numCodewords; i++)
|
|
{
|
|
codewordsInts[i] = codewordBytes[i] & 0xFF;
|
|
}
|
|
var numECCodewords = codewordBytes.length - numDataCodewords;
|
|
try
|
|
{
|
|
Decoder.rsDecoder.decode(codewordsInts, numECCodewords);
|
|
//var corrector = new ReedSolomon(codewordsInts, numECCodewords);
|
|
//corrector.correct();
|
|
}
|
|
catch ( rse)
|
|
{
|
|
throw rse;
|
|
}
|
|
// Copy back into array of bytes -- only need to worry about the bytes that were data
|
|
// We don't care about errors in the error-correction codewords
|
|
for (var i = 0; i < numDataCodewords; i++)
|
|
{
|
|
codewordBytes[i] = codewordsInts[i];
|
|
}
|
|
}
|
|
|
|
Decoder.decode=function(bits)
|
|
{
|
|
var parser = new BitMatrixParser(bits);
|
|
var version = parser.readVersion();
|
|
var ecLevel = parser.readFormatInformation().ErrorCorrectionLevel;
|
|
|
|
// Read codewords
|
|
var codewords = parser.readCodewords();
|
|
|
|
// Separate into data blocks
|
|
var dataBlocks = DataBlock.getDataBlocks(codewords, version, ecLevel);
|
|
|
|
// Count total number of data bytes
|
|
var totalBytes = 0;
|
|
for (var i = 0; i < dataBlocks.length; i++)
|
|
{
|
|
totalBytes += dataBlocks[i].NumDataCodewords;
|
|
}
|
|
var resultBytes = new Array(totalBytes);
|
|
var resultOffset = 0;
|
|
|
|
// Error-correct and copy data blocks together into a stream of bytes
|
|
for (var j = 0; j < dataBlocks.length; j++)
|
|
{
|
|
var dataBlock = dataBlocks[j];
|
|
var codewordBytes = dataBlock.Codewords;
|
|
var numDataCodewords = dataBlock.NumDataCodewords;
|
|
Decoder.correctErrors(codewordBytes, numDataCodewords);
|
|
for (var i = 0; i < numDataCodewords; i++)
|
|
{
|
|
resultBytes[resultOffset++] = codewordBytes[i];
|
|
}
|
|
}
|
|
|
|
// Decode the contents of that stream of bytes
|
|
var reader = new QRCodeDataBlockReader(resultBytes, version.VersionNumber, ecLevel.Bits);
|
|
return reader;
|
|
//return DecodedBitStreamParser.decode(resultBytes, version, ecLevel);
|
|
}
|
|
|
|
// Source: public/src/js/jsqrcode/qrcode.js
|
|
/*
|
|
Copyright 2011 Lazar Laszlo (lazarsoft@gmail.com, www.lazarsoft.info)
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
|
|
qrcode = window.qrcode || {};
|
|
qrcode.imagedata = null;
|
|
qrcode.width = 0;
|
|
qrcode.height = 0;
|
|
qrcode.qrCodeSymbol = null;
|
|
qrcode.debug = false;
|
|
qrcode.maxImgSize = 1024*1024;
|
|
|
|
qrcode.sizeOfDataLengthInfo = [ [ 10, 9, 8, 8 ], [ 12, 11, 16, 10 ], [ 14, 13, 16, 12 ] ];
|
|
|
|
qrcode.callback = null;
|
|
|
|
qrcode.decode = function(src){
|
|
|
|
if(arguments.length==0)
|
|
{
|
|
var canvas_qr = document.getElementById("qr-canvas");
|
|
var context = canvas_qr.getContext('2d');
|
|
qrcode.width = canvas_qr.width;
|
|
qrcode.height = canvas_qr.height;
|
|
qrcode.imagedata = context.getImageData(0, 0, qrcode.width, qrcode.height);
|
|
qrcode.result = qrcode.process(context);
|
|
if(qrcode.callback!=null)
|
|
qrcode.callback(qrcode.result);
|
|
return qrcode.result;
|
|
}
|
|
else
|
|
{
|
|
var image = new Image();
|
|
image.onload=function(){
|
|
//var canvas_qr = document.getElementById("qr-canvas");
|
|
var canvas_qr = document.createElement('canvas');
|
|
var context = canvas_qr.getContext('2d');
|
|
var nheight = image.height;
|
|
var nwidth = image.width;
|
|
if(image.width*image.height>qrcode.maxImgSize)
|
|
{
|
|
var ir = image.width / image.height;
|
|
nheight = Math.sqrt(qrcode.maxImgSize/ir);
|
|
nwidth=ir*nheight;
|
|
}
|
|
|
|
canvas_qr.width = nwidth;
|
|
canvas_qr.height = nheight;
|
|
|
|
context.drawImage(image, 0, 0, canvas_qr.width, canvas_qr.height );
|
|
qrcode.width = canvas_qr.width;
|
|
qrcode.height = canvas_qr.height;
|
|
try{
|
|
qrcode.imagedata = context.getImageData(0, 0, canvas_qr.width, canvas_qr.height);
|
|
}catch(e){
|
|
qrcode.result = "Cross domain image reading not supported in your browser! Save it to your computer then drag and drop the file!";
|
|
if(qrcode.callback!=null)
|
|
qrcode.callback(qrcode.result);
|
|
return;
|
|
}
|
|
|
|
try
|
|
{
|
|
qrcode.result = qrcode.process(context);
|
|
}
|
|
catch(e)
|
|
{
|
|
console.log(e);
|
|
qrcode.result = "error decoding QR Code";
|
|
}
|
|
if(qrcode.callback!=null)
|
|
qrcode.callback(qrcode.result);
|
|
}
|
|
image.src = src;
|
|
}
|
|
}
|
|
|
|
qrcode.isUrl = function(s)
|
|
{
|
|
var regexp = /(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/;
|
|
return regexp.test(s);
|
|
}
|
|
|
|
qrcode.decode_url = function (s)
|
|
{
|
|
var escaped = "";
|
|
try{
|
|
escaped = escape( s );
|
|
}
|
|
catch(e)
|
|
{
|
|
console.log(e);
|
|
escaped = s;
|
|
}
|
|
var ret = "";
|
|
try{
|
|
ret = decodeURIComponent( escaped );
|
|
}
|
|
catch(e)
|
|
{
|
|
console.log(e);
|
|
ret = escaped;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
qrcode.decode_utf8 = function ( s )
|
|
{
|
|
if(qrcode.isUrl(s))
|
|
return qrcode.decode_url(s);
|
|
else
|
|
return s;
|
|
}
|
|
|
|
qrcode.process = function(ctx){
|
|
|
|
var start = new Date().getTime();
|
|
|
|
var image = qrcode.grayScaleToBitmap(qrcode.grayscale());
|
|
//var image = qrcode.binarize(128);
|
|
|
|
if(qrcode.debug)
|
|
{
|
|
for (var y = 0; y < qrcode.height; y++)
|
|
{
|
|
for (var x = 0; x < qrcode.width; x++)
|
|
{
|
|
var point = (x * 4) + (y * qrcode.width * 4);
|
|
qrcode.imagedata.data[point] = image[x+y*qrcode.width]?0:0;
|
|
qrcode.imagedata.data[point+1] = image[x+y*qrcode.width]?0:0;
|
|
qrcode.imagedata.data[point+2] = image[x+y*qrcode.width]?255:0;
|
|
}
|
|
}
|
|
ctx.putImageData(qrcode.imagedata, 0, 0);
|
|
}
|
|
|
|
//var finderPatternInfo = new FinderPatternFinder().findFinderPattern(image);
|
|
|
|
var detector = new Detector(image);
|
|
|
|
var qRCodeMatrix = detector.detect();
|
|
|
|
/*for (var y = 0; y < qRCodeMatrix.bits.Height; y++)
|
|
{
|
|
for (var x = 0; x < qRCodeMatrix.bits.Width; x++)
|
|
{
|
|
var point = (x * 4*2) + (y*2 * qrcode.width * 4);
|
|
qrcode.imagedata.data[point] = qRCodeMatrix.bits.get_Renamed(x,y)?0:0;
|
|
qrcode.imagedata.data[point+1] = qRCodeMatrix.bits.get_Renamed(x,y)?0:0;
|
|
qrcode.imagedata.data[point+2] = qRCodeMatrix.bits.get_Renamed(x,y)?255:0;
|
|
}
|
|
}*/
|
|
if(qrcode.debug)
|
|
ctx.putImageData(qrcode.imagedata, 0, 0);
|
|
|
|
var reader = Decoder.decode(qRCodeMatrix.bits);
|
|
var data = reader.DataByte;
|
|
var str="";
|
|
for(var i=0;i<data.length;i++)
|
|
{
|
|
for(var j=0;j<data[i].length;j++)
|
|
str+=String.fromCharCode(data[i][j]);
|
|
}
|
|
|
|
var end = new Date().getTime();
|
|
var time = end - start;
|
|
console.log(time);
|
|
|
|
return qrcode.decode_utf8(str);
|
|
//alert("Time:" + time + " Code: "+str);
|
|
}
|
|
|
|
qrcode.getPixel = function(x,y){
|
|
if (qrcode.width < x) {
|
|
throw "point error";
|
|
}
|
|
if (qrcode.height < y) {
|
|
throw "point error";
|
|
}
|
|
point = (x * 4) + (y * qrcode.width * 4);
|
|
p = (qrcode.imagedata.data[point]*33 + qrcode.imagedata.data[point + 1]*34 + qrcode.imagedata.data[point + 2]*33)/100;
|
|
return p;
|
|
}
|
|
|
|
qrcode.binarize = function(th){
|
|
var ret = new Array(qrcode.width*qrcode.height);
|
|
for (var y = 0; y < qrcode.height; y++)
|
|
{
|
|
for (var x = 0; x < qrcode.width; x++)
|
|
{
|
|
var gray = qrcode.getPixel(x, y);
|
|
|
|
ret[x+y*qrcode.width] = gray<=th?true:false;
|
|
}
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
qrcode.getMiddleBrightnessPerArea=function(image)
|
|
{
|
|
var numSqrtArea = 4;
|
|
//obtain middle brightness((min + max) / 2) per area
|
|
var areaWidth = Math.floor(qrcode.width / numSqrtArea);
|
|
var areaHeight = Math.floor(qrcode.height / numSqrtArea);
|
|
var minmax = new Array(numSqrtArea);
|
|
for (var i = 0; i < numSqrtArea; i++)
|
|
{
|
|
minmax[i] = new Array(numSqrtArea);
|
|
for (var i2 = 0; i2 < numSqrtArea; i2++)
|
|
{
|
|
minmax[i][i2] = new Array(0,0);
|
|
}
|
|
}
|
|
for (var ay = 0; ay < numSqrtArea; ay++)
|
|
{
|
|
for (var ax = 0; ax < numSqrtArea; ax++)
|
|
{
|
|
minmax[ax][ay][0] = 0xFF;
|
|
for (var dy = 0; dy < areaHeight; dy++)
|
|
{
|
|
for (var dx = 0; dx < areaWidth; dx++)
|
|
{
|
|
var target = image[areaWidth * ax + dx+(areaHeight * ay + dy)*qrcode.width];
|
|
if (target < minmax[ax][ay][0])
|
|
minmax[ax][ay][0] = target;
|
|
if (target > minmax[ax][ay][1])
|
|
minmax[ax][ay][1] = target;
|
|
}
|
|
}
|
|
//minmax[ax][ay][0] = (minmax[ax][ay][0] + minmax[ax][ay][1]) / 2;
|
|
}
|
|
}
|
|
var middle = new Array(numSqrtArea);
|
|
for (var i3 = 0; i3 < numSqrtArea; i3++)
|
|
{
|
|
middle[i3] = new Array(numSqrtArea);
|
|
}
|
|
for (var ay = 0; ay < numSqrtArea; ay++)
|
|
{
|
|
for (var ax = 0; ax < numSqrtArea; ax++)
|
|
{
|
|
middle[ax][ay] = Math.floor((minmax[ax][ay][0] + minmax[ax][ay][1]) / 2);
|
|
//Console.out.print(middle[ax][ay] + ",");
|
|
}
|
|
//Console.out.println("");
|
|
}
|
|
//Console.out.println("");
|
|
|
|
return middle;
|
|
}
|
|
|
|
qrcode.grayScaleToBitmap=function(grayScale)
|
|
{
|
|
var middle = qrcode.getMiddleBrightnessPerArea(grayScale);
|
|
var sqrtNumArea = middle.length;
|
|
var areaWidth = Math.floor(qrcode.width / sqrtNumArea);
|
|
var areaHeight = Math.floor(qrcode.height / sqrtNumArea);
|
|
var bitmap = new Array(qrcode.height*qrcode.width);
|
|
|
|
for (var ay = 0; ay < sqrtNumArea; ay++)
|
|
{
|
|
for (var ax = 0; ax < sqrtNumArea; ax++)
|
|
{
|
|
for (var dy = 0; dy < areaHeight; dy++)
|
|
{
|
|
for (var dx = 0; dx < areaWidth; dx++)
|
|
{
|
|
bitmap[areaWidth * ax + dx+ (areaHeight * ay + dy)*qrcode.width] = (grayScale[areaWidth * ax + dx+ (areaHeight * ay + dy)*qrcode.width] < middle[ax][ay])?true:false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return bitmap;
|
|
}
|
|
|
|
qrcode.grayscale = function(){
|
|
var ret = new Array(qrcode.width*qrcode.height);
|
|
for (var y = 0; y < qrcode.height; y++)
|
|
{
|
|
for (var x = 0; x < qrcode.width; x++)
|
|
{
|
|
var gray = qrcode.getPixel(x, y);
|
|
|
|
ret[x+y*qrcode.width] = gray;
|
|
}
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
|
|
|
|
|
|
function URShift( number, bits)
|
|
{
|
|
if (number >= 0)
|
|
return number >> bits;
|
|
else
|
|
return (number >> bits) + (2 << ~bits);
|
|
}
|
|
|
|
|
|
Array.prototype.remove = function(from, to) {
|
|
var rest = this.slice((to || from) + 1 || this.length);
|
|
this.length = from < 0 ? this.length + from : from;
|
|
return this.push.apply(this, rest);
|
|
};
|
|
|
|
// Source: public/src/js/jsqrcode/findpat.js
|
|
/*
|
|
Ported to JavaScript by Lazar Laszlo 2011
|
|
|
|
lazarsoft@gmail.com, www.lazarsoft.info
|
|
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
var MIN_SKIP = 3;
|
|
var MAX_MODULES = 57;
|
|
var INTEGER_MATH_SHIFT = 8;
|
|
var CENTER_QUORUM = 2;
|
|
|
|
qrcode.orderBestPatterns=function(patterns)
|
|
{
|
|
|
|
function distance( pattern1, pattern2)
|
|
{
|
|
xDiff = pattern1.X - pattern2.X;
|
|
yDiff = pattern1.Y - pattern2.Y;
|
|
return Math.sqrt( (xDiff * xDiff + yDiff * yDiff));
|
|
}
|
|
|
|
/// <summary> Returns the z component of the cross product between vectors BC and BA.</summary>
|
|
function crossProductZ( pointA, pointB, pointC)
|
|
{
|
|
var bX = pointB.x;
|
|
var bY = pointB.y;
|
|
return ((pointC.x - bX) * (pointA.y - bY)) - ((pointC.y - bY) * (pointA.x - bX));
|
|
}
|
|
|
|
|
|
// Find distances between pattern centers
|
|
var zeroOneDistance = distance(patterns[0], patterns[1]);
|
|
var oneTwoDistance = distance(patterns[1], patterns[2]);
|
|
var zeroTwoDistance = distance(patterns[0], patterns[2]);
|
|
|
|
var pointA, pointB, pointC;
|
|
// Assume one closest to other two is B; A and C will just be guesses at first
|
|
if (oneTwoDistance >= zeroOneDistance && oneTwoDistance >= zeroTwoDistance)
|
|
{
|
|
pointB = patterns[0];
|
|
pointA = patterns[1];
|
|
pointC = patterns[2];
|
|
}
|
|
else if (zeroTwoDistance >= oneTwoDistance && zeroTwoDistance >= zeroOneDistance)
|
|
{
|
|
pointB = patterns[1];
|
|
pointA = patterns[0];
|
|
pointC = patterns[2];
|
|
}
|
|
else
|
|
{
|
|
pointB = patterns[2];
|
|
pointA = patterns[0];
|
|
pointC = patterns[1];
|
|
}
|
|
|
|
// Use cross product to figure out whether A and C are correct or flipped.
|
|
// This asks whether BC x BA has a positive z component, which is the arrangement
|
|
// we want for A, B, C. If it's negative, then we've got it flipped around and
|
|
// should swap A and C.
|
|
if (crossProductZ(pointA, pointB, pointC) < 0.0)
|
|
{
|
|
var temp = pointA;
|
|
pointA = pointC;
|
|
pointC = temp;
|
|
}
|
|
|
|
patterns[0] = pointA;
|
|
patterns[1] = pointB;
|
|
patterns[2] = pointC;
|
|
}
|
|
|
|
|
|
function FinderPattern(posX, posY, estimatedModuleSize)
|
|
{
|
|
this.x=posX;
|
|
this.y=posY;
|
|
this.count = 1;
|
|
this.estimatedModuleSize = estimatedModuleSize;
|
|
|
|
this.__defineGetter__("EstimatedModuleSize", function()
|
|
{
|
|
return this.estimatedModuleSize;
|
|
});
|
|
this.__defineGetter__("Count", function()
|
|
{
|
|
return this.count;
|
|
});
|
|
this.__defineGetter__("X", function()
|
|
{
|
|
return this.x;
|
|
});
|
|
this.__defineGetter__("Y", function()
|
|
{
|
|
return this.y;
|
|
});
|
|
this.incrementCount = function()
|
|
{
|
|
this.count++;
|
|
}
|
|
this.aboutEquals=function( moduleSize, i, j)
|
|
{
|
|
if (Math.abs(i - this.y) <= moduleSize && Math.abs(j - this.x) <= moduleSize)
|
|
{
|
|
var moduleSizeDiff = Math.abs(moduleSize - this.estimatedModuleSize);
|
|
return moduleSizeDiff <= 1.0 || moduleSizeDiff / this.estimatedModuleSize <= 1.0;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
}
|
|
|
|
function FinderPatternInfo(patternCenters)
|
|
{
|
|
this.bottomLeft = patternCenters[0];
|
|
this.topLeft = patternCenters[1];
|
|
this.topRight = patternCenters[2];
|
|
this.__defineGetter__("BottomLeft", function()
|
|
{
|
|
return this.bottomLeft;
|
|
});
|
|
this.__defineGetter__("TopLeft", function()
|
|
{
|
|
return this.topLeft;
|
|
});
|
|
this.__defineGetter__("TopRight", function()
|
|
{
|
|
return this.topRight;
|
|
});
|
|
}
|
|
|
|
function FinderPatternFinder()
|
|
{
|
|
this.image=null;
|
|
this.possibleCenters = [];
|
|
this.hasSkipped = false;
|
|
this.crossCheckStateCount = new Array(0,0,0,0,0);
|
|
this.resultPointCallback = null;
|
|
|
|
this.__defineGetter__("CrossCheckStateCount", function()
|
|
{
|
|
this.crossCheckStateCount[0] = 0;
|
|
this.crossCheckStateCount[1] = 0;
|
|
this.crossCheckStateCount[2] = 0;
|
|
this.crossCheckStateCount[3] = 0;
|
|
this.crossCheckStateCount[4] = 0;
|
|
return this.crossCheckStateCount;
|
|
});
|
|
|
|
this.foundPatternCross=function( stateCount)
|
|
{
|
|
var totalModuleSize = 0;
|
|
for (var i = 0; i < 5; i++)
|
|
{
|
|
var count = stateCount[i];
|
|
if (count == 0)
|
|
{
|
|
return false;
|
|
}
|
|
totalModuleSize += count;
|
|
}
|
|
if (totalModuleSize < 7)
|
|
{
|
|
return false;
|
|
}
|
|
var moduleSize = Math.floor((totalModuleSize << INTEGER_MATH_SHIFT) / 7);
|
|
var maxVariance = Math.floor(moduleSize / 2);
|
|
// Allow less than 50% variance from 1-1-3-1-1 proportions
|
|
return Math.abs(moduleSize - (stateCount[0] << INTEGER_MATH_SHIFT)) < maxVariance && Math.abs(moduleSize - (stateCount[1] << INTEGER_MATH_SHIFT)) < maxVariance && Math.abs(3 * moduleSize - (stateCount[2] << INTEGER_MATH_SHIFT)) < 3 * maxVariance && Math.abs(moduleSize - (stateCount[3] << INTEGER_MATH_SHIFT)) < maxVariance && Math.abs(moduleSize - (stateCount[4] << INTEGER_MATH_SHIFT)) < maxVariance;
|
|
}
|
|
this.centerFromEnd=function( stateCount, end)
|
|
{
|
|
return (end - stateCount[4] - stateCount[3]) - stateCount[2] / 2.0;
|
|
}
|
|
this.crossCheckVertical=function( startI, centerJ, maxCount, originalStateCountTotal)
|
|
{
|
|
var image = this.image;
|
|
|
|
var maxI = qrcode.height;
|
|
var stateCount = this.CrossCheckStateCount;
|
|
|
|
// Start counting up from center
|
|
var i = startI;
|
|
while (i >= 0 && image[centerJ + i*qrcode.width])
|
|
{
|
|
stateCount[2]++;
|
|
i--;
|
|
}
|
|
if (i < 0)
|
|
{
|
|
return NaN;
|
|
}
|
|
while (i >= 0 && !image[centerJ +i*qrcode.width] && stateCount[1] <= maxCount)
|
|
{
|
|
stateCount[1]++;
|
|
i--;
|
|
}
|
|
// If already too many modules in this state or ran off the edge:
|
|
if (i < 0 || stateCount[1] > maxCount)
|
|
{
|
|
return NaN;
|
|
}
|
|
while (i >= 0 && image[centerJ + i*qrcode.width] && stateCount[0] <= maxCount)
|
|
{
|
|
stateCount[0]++;
|
|
i--;
|
|
}
|
|
if (stateCount[0] > maxCount)
|
|
{
|
|
return NaN;
|
|
}
|
|
|
|
// Now also count down from center
|
|
i = startI + 1;
|
|
while (i < maxI && image[centerJ +i*qrcode.width])
|
|
{
|
|
stateCount[2]++;
|
|
i++;
|
|
}
|
|
if (i == maxI)
|
|
{
|
|
return NaN;
|
|
}
|
|
while (i < maxI && !image[centerJ + i*qrcode.width] && stateCount[3] < maxCount)
|
|
{
|
|
stateCount[3]++;
|
|
i++;
|
|
}
|
|
if (i == maxI || stateCount[3] >= maxCount)
|
|
{
|
|
return NaN;
|
|
}
|
|
while (i < maxI && image[centerJ + i*qrcode.width] && stateCount[4] < maxCount)
|
|
{
|
|
stateCount[4]++;
|
|
i++;
|
|
}
|
|
if (stateCount[4] >= maxCount)
|
|
{
|
|
return NaN;
|
|
}
|
|
|
|
// If we found a finder-pattern-like section, but its size is more than 40% different than
|
|
// the original, assume it's a false positive
|
|
var stateCountTotal = stateCount[0] + stateCount[1] + stateCount[2] + stateCount[3] + stateCount[4];
|
|
if (5 * Math.abs(stateCountTotal - originalStateCountTotal) >= 2 * originalStateCountTotal)
|
|
{
|
|
return NaN;
|
|
}
|
|
|
|
return this.foundPatternCross(stateCount)?this.centerFromEnd(stateCount, i):NaN;
|
|
}
|
|
this.crossCheckHorizontal=function( startJ, centerI, maxCount, originalStateCountTotal)
|
|
{
|
|
var image = this.image;
|
|
|
|
var maxJ = qrcode.width;
|
|
var stateCount = this.CrossCheckStateCount;
|
|
|
|
var j = startJ;
|
|
while (j >= 0 && image[j+ centerI*qrcode.width])
|
|
{
|
|
stateCount[2]++;
|
|
j--;
|
|
}
|
|
if (j < 0)
|
|
{
|
|
return NaN;
|
|
}
|
|
while (j >= 0 && !image[j+ centerI*qrcode.width] && stateCount[1] <= maxCount)
|
|
{
|
|
stateCount[1]++;
|
|
j--;
|
|
}
|
|
if (j < 0 || stateCount[1] > maxCount)
|
|
{
|
|
return NaN;
|
|
}
|
|
while (j >= 0 && image[j+ centerI*qrcode.width] && stateCount[0] <= maxCount)
|
|
{
|
|
stateCount[0]++;
|
|
j--;
|
|
}
|
|
if (stateCount[0] > maxCount)
|
|
{
|
|
return NaN;
|
|
}
|
|
|
|
j = startJ + 1;
|
|
while (j < maxJ && image[j+ centerI*qrcode.width])
|
|
{
|
|
stateCount[2]++;
|
|
j++;
|
|
}
|
|
if (j == maxJ)
|
|
{
|
|
return NaN;
|
|
}
|
|
while (j < maxJ && !image[j+ centerI*qrcode.width] && stateCount[3] < maxCount)
|
|
{
|
|
stateCount[3]++;
|
|
j++;
|
|
}
|
|
if (j == maxJ || stateCount[3] >= maxCount)
|
|
{
|
|
return NaN;
|
|
}
|
|
while (j < maxJ && image[j+ centerI*qrcode.width] && stateCount[4] < maxCount)
|
|
{
|
|
stateCount[4]++;
|
|
j++;
|
|
}
|
|
if (stateCount[4] >= maxCount)
|
|
{
|
|
return NaN;
|
|
}
|
|
|
|
// If we found a finder-pattern-like section, but its size is significantly different than
|
|
// the original, assume it's a false positive
|
|
var stateCountTotal = stateCount[0] + stateCount[1] + stateCount[2] + stateCount[3] + stateCount[4];
|
|
if (5 * Math.abs(stateCountTotal - originalStateCountTotal) >= originalStateCountTotal)
|
|
{
|
|
return NaN;
|
|
}
|
|
|
|
return this.foundPatternCross(stateCount)?this.centerFromEnd(stateCount, j):NaN;
|
|
}
|
|
this.handlePossibleCenter=function( stateCount, i, j)
|
|
{
|
|
var stateCountTotal = stateCount[0] + stateCount[1] + stateCount[2] + stateCount[3] + stateCount[4];
|
|
var centerJ = this.centerFromEnd(stateCount, j); //float
|
|
var centerI = this.crossCheckVertical(i, Math.floor( centerJ), stateCount[2], stateCountTotal); //float
|
|
if (!isNaN(centerI))
|
|
{
|
|
// Re-cross check
|
|
centerJ = this.crossCheckHorizontal(Math.floor( centerJ), Math.floor( centerI), stateCount[2], stateCountTotal);
|
|
if (!isNaN(centerJ))
|
|
{
|
|
var estimatedModuleSize = stateCountTotal / 7.0;
|
|
var found = false;
|
|
var max = this.possibleCenters.length;
|
|
for (var index = 0; index < max; index++)
|
|
{
|
|
var center = this.possibleCenters[index];
|
|
// Look for about the same center and module size:
|
|
if (center.aboutEquals(estimatedModuleSize, centerI, centerJ))
|
|
{
|
|
center.incrementCount();
|
|
found = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!found)
|
|
{
|
|
var point = new FinderPattern(centerJ, centerI, estimatedModuleSize);
|
|
this.possibleCenters.push(point);
|
|
if (this.resultPointCallback != null)
|
|
{
|
|
this.resultPointCallback.foundPossibleResultPoint(point);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
this.selectBestPatterns=function()
|
|
{
|
|
|
|
var startSize = this.possibleCenters.length;
|
|
if (startSize < 3)
|
|
{
|
|
// Couldn't find enough finder patterns
|
|
throw "Couldn't find enough finder patterns";
|
|
}
|
|
|
|
// Filter outlier possibilities whose module size is too different
|
|
if (startSize > 3)
|
|
{
|
|
// But we can only afford to do so if we have at least 4 possibilities to choose from
|
|
var totalModuleSize = 0.0;
|
|
var square = 0.0;
|
|
for (var i = 0; i < startSize; i++)
|
|
{
|
|
//totalModuleSize += this.possibleCenters[i].EstimatedModuleSize;
|
|
var centerValue=this.possibleCenters[i].EstimatedModuleSize;
|
|
totalModuleSize += centerValue;
|
|
square += (centerValue * centerValue);
|
|
}
|
|
var average = totalModuleSize / startSize;
|
|
this.possibleCenters.sort(function(center1,center2) {
|
|
var dA=Math.abs(center2.EstimatedModuleSize - average);
|
|
var dB=Math.abs(center1.EstimatedModuleSize - average);
|
|
if (dA < dB) {
|
|
return (-1);
|
|
} else if (dA == dB) {
|
|
return 0;
|
|
} else {
|
|
return 1;
|
|
}
|
|
});
|
|
|
|
var stdDev = Math.sqrt(square / startSize - average * average);
|
|
var limit = Math.max(0.2 * average, stdDev);
|
|
for (var i = 0; i < this.possibleCenters.length && this.possibleCenters.length > 3; i++)
|
|
{
|
|
var pattern = this.possibleCenters[i];
|
|
//if (Math.abs(pattern.EstimatedModuleSize - average) > 0.2 * average)
|
|
if (Math.abs(pattern.EstimatedModuleSize - average) > limit)
|
|
{
|
|
this.possibleCenters.remove(i);
|
|
i--;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (this.possibleCenters.length > 3)
|
|
{
|
|
// Throw away all but those first size candidate points we found.
|
|
this.possibleCenters.sort(function(a, b){
|
|
if (a.count > b.count){return -1;}
|
|
if (a.count < b.count){return 1;}
|
|
return 0;
|
|
});
|
|
}
|
|
|
|
return new Array( this.possibleCenters[0], this.possibleCenters[1], this.possibleCenters[2]);
|
|
}
|
|
|
|
this.findRowSkip=function()
|
|
{
|
|
var max = this.possibleCenters.length;
|
|
if (max <= 1)
|
|
{
|
|
return 0;
|
|
}
|
|
var firstConfirmedCenter = null;
|
|
for (var i = 0; i < max; i++)
|
|
{
|
|
var center = this.possibleCenters[i];
|
|
if (center.Count >= CENTER_QUORUM)
|
|
{
|
|
if (firstConfirmedCenter == null)
|
|
{
|
|
firstConfirmedCenter = center;
|
|
}
|
|
else
|
|
{
|
|
// We have two confirmed centers
|
|
// How far down can we skip before resuming looking for the next
|
|
// pattern? In the worst case, only the difference between the
|
|
// difference in the x / y coordinates of the two centers.
|
|
// This is the case where you find top left last.
|
|
this.hasSkipped = true;
|
|
return Math.floor ((Math.abs(firstConfirmedCenter.X - center.X) - Math.abs(firstConfirmedCenter.Y - center.Y)) / 2);
|
|
}
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
this.haveMultiplyConfirmedCenters=function()
|
|
{
|
|
var confirmedCount = 0;
|
|
var totalModuleSize = 0.0;
|
|
var max = this.possibleCenters.length;
|
|
for (var i = 0; i < max; i++)
|
|
{
|
|
var pattern = this.possibleCenters[i];
|
|
if (pattern.Count >= CENTER_QUORUM)
|
|
{
|
|
confirmedCount++;
|
|
totalModuleSize += pattern.EstimatedModuleSize;
|
|
}
|
|
}
|
|
if (confirmedCount < 3)
|
|
{
|
|
return false;
|
|
}
|
|
// OK, we have at least 3 confirmed centers, but, it's possible that one is a "false positive"
|
|
// and that we need to keep looking. We detect this by asking if the estimated module sizes
|
|
// vary too much. We arbitrarily say that when the total deviation from average exceeds
|
|
// 5% of the total module size estimates, it's too much.
|
|
var average = totalModuleSize / max;
|
|
var totalDeviation = 0.0;
|
|
for (var i = 0; i < max; i++)
|
|
{
|
|
pattern = this.possibleCenters[i];
|
|
totalDeviation += Math.abs(pattern.EstimatedModuleSize - average);
|
|
}
|
|
return totalDeviation <= 0.05 * totalModuleSize;
|
|
}
|
|
|
|
this.findFinderPattern = function(image){
|
|
var tryHarder = false;
|
|
this.image=image;
|
|
var maxI = qrcode.height;
|
|
var maxJ = qrcode.width;
|
|
var iSkip = Math.floor((3 * maxI) / (4 * MAX_MODULES));
|
|
if (iSkip < MIN_SKIP || tryHarder)
|
|
{
|
|
iSkip = MIN_SKIP;
|
|
}
|
|
|
|
var done = false;
|
|
var stateCount = new Array(5);
|
|
for (var i = iSkip - 1; i < maxI && !done; i += iSkip)
|
|
{
|
|
// Get a row of black/white values
|
|
stateCount[0] = 0;
|
|
stateCount[1] = 0;
|
|
stateCount[2] = 0;
|
|
stateCount[3] = 0;
|
|
stateCount[4] = 0;
|
|
var currentState = 0;
|
|
for (var j = 0; j < maxJ; j++)
|
|
{
|
|
if (image[j+i*qrcode.width] )
|
|
{
|
|
// Black pixel
|
|
if ((currentState & 1) == 1)
|
|
{
|
|
// Counting white pixels
|
|
currentState++;
|
|
}
|
|
stateCount[currentState]++;
|
|
}
|
|
else
|
|
{
|
|
// White pixel
|
|
if ((currentState & 1) == 0)
|
|
{
|
|
// Counting black pixels
|
|
if (currentState == 4)
|
|
{
|
|
// A winner?
|
|
if (this.foundPatternCross(stateCount))
|
|
{
|
|
// Yes
|
|
var confirmed = this.handlePossibleCenter(stateCount, i, j);
|
|
if (confirmed)
|
|
{
|
|
// Start examining every other line. Checking each line turned out to be too
|
|
// expensive and didn't improve performance.
|
|
iSkip = 2;
|
|
if (this.hasSkipped)
|
|
{
|
|
done = this.haveMultiplyConfirmedCenters();
|
|
}
|
|
else
|
|
{
|
|
var rowSkip = this.findRowSkip();
|
|
if (rowSkip > stateCount[2])
|
|
{
|
|
// Skip rows between row of lower confirmed center
|
|
// and top of presumed third confirmed center
|
|
// but back up a bit to get a full chance of detecting
|
|
// it, entire width of center of finder pattern
|
|
|
|
// Skip by rowSkip, but back off by stateCount[2] (size of last center
|
|
// of pattern we saw) to be conservative, and also back off by iSkip which
|
|
// is about to be re-added
|
|
i += rowSkip - stateCount[2] - iSkip;
|
|
j = maxJ - 1;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// Advance to next black pixel
|
|
do
|
|
{
|
|
j++;
|
|
}
|
|
while (j < maxJ && !image[j + i*qrcode.width]);
|
|
j--; // back up to that last white pixel
|
|
}
|
|
// Clear state to start looking again
|
|
currentState = 0;
|
|
stateCount[0] = 0;
|
|
stateCount[1] = 0;
|
|
stateCount[2] = 0;
|
|
stateCount[3] = 0;
|
|
stateCount[4] = 0;
|
|
}
|
|
else
|
|
{
|
|
// No, shift counts back by two
|
|
stateCount[0] = stateCount[2];
|
|
stateCount[1] = stateCount[3];
|
|
stateCount[2] = stateCount[4];
|
|
stateCount[3] = 1;
|
|
stateCount[4] = 0;
|
|
currentState = 3;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
stateCount[++currentState]++;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// Counting white pixels
|
|
stateCount[currentState]++;
|
|
}
|
|
}
|
|
}
|
|
if (this.foundPatternCross(stateCount))
|
|
{
|
|
var confirmed = this.handlePossibleCenter(stateCount, i, maxJ);
|
|
if (confirmed)
|
|
{
|
|
iSkip = stateCount[0];
|
|
if (this.hasSkipped)
|
|
{
|
|
// Found a third one
|
|
done = haveMultiplyConfirmedCenters();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
var patternInfo = this.selectBestPatterns();
|
|
qrcode.orderBestPatterns(patternInfo);
|
|
|
|
return new FinderPatternInfo(patternInfo);
|
|
};
|
|
}
|
|
|
|
// Source: public/src/js/jsqrcode/alignpat.js
|
|
/*
|
|
Ported to JavaScript by Lazar Laszlo 2011
|
|
|
|
lazarsoft@gmail.com, www.lazarsoft.info
|
|
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
function AlignmentPattern(posX, posY, estimatedModuleSize)
|
|
{
|
|
this.x=posX;
|
|
this.y=posY;
|
|
this.count = 1;
|
|
this.estimatedModuleSize = estimatedModuleSize;
|
|
|
|
this.__defineGetter__("EstimatedModuleSize", function()
|
|
{
|
|
return this.estimatedModuleSize;
|
|
});
|
|
this.__defineGetter__("Count", function()
|
|
{
|
|
return this.count;
|
|
});
|
|
this.__defineGetter__("X", function()
|
|
{
|
|
return Math.floor(this.x);
|
|
});
|
|
this.__defineGetter__("Y", function()
|
|
{
|
|
return Math.floor(this.y);
|
|
});
|
|
this.incrementCount = function()
|
|
{
|
|
this.count++;
|
|
}
|
|
this.aboutEquals=function( moduleSize, i, j)
|
|
{
|
|
if (Math.abs(i - this.y) <= moduleSize && Math.abs(j - this.x) <= moduleSize)
|
|
{
|
|
var moduleSizeDiff = Math.abs(moduleSize - this.estimatedModuleSize);
|
|
return moduleSizeDiff <= 1.0 || moduleSizeDiff / this.estimatedModuleSize <= 1.0;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
}
|
|
|
|
function AlignmentPatternFinder( image, startX, startY, width, height, moduleSize, resultPointCallback)
|
|
{
|
|
this.image = image;
|
|
this.possibleCenters = new Array();
|
|
this.startX = startX;
|
|
this.startY = startY;
|
|
this.width = width;
|
|
this.height = height;
|
|
this.moduleSize = moduleSize;
|
|
this.crossCheckStateCount = new Array(0,0,0);
|
|
this.resultPointCallback = resultPointCallback;
|
|
|
|
this.centerFromEnd=function(stateCount, end)
|
|
{
|
|
return (end - stateCount[2]) - stateCount[1] / 2.0;
|
|
}
|
|
this.foundPatternCross = function(stateCount)
|
|
{
|
|
var moduleSize = this.moduleSize;
|
|
var maxVariance = moduleSize / 2.0;
|
|
for (var i = 0; i < 3; i++)
|
|
{
|
|
if (Math.abs(moduleSize - stateCount[i]) >= maxVariance)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
this.crossCheckVertical=function( startI, centerJ, maxCount, originalStateCountTotal)
|
|
{
|
|
var image = this.image;
|
|
|
|
var maxI = qrcode.height;
|
|
var stateCount = this.crossCheckStateCount;
|
|
stateCount[0] = 0;
|
|
stateCount[1] = 0;
|
|
stateCount[2] = 0;
|
|
|
|
// Start counting up from center
|
|
var i = startI;
|
|
while (i >= 0 && image[centerJ + i*qrcode.width] && stateCount[1] <= maxCount)
|
|
{
|
|
stateCount[1]++;
|
|
i--;
|
|
}
|
|
// If already too many modules in this state or ran off the edge:
|
|
if (i < 0 || stateCount[1] > maxCount)
|
|
{
|
|
return NaN;
|
|
}
|
|
while (i >= 0 && !image[centerJ + i*qrcode.width] && stateCount[0] <= maxCount)
|
|
{
|
|
stateCount[0]++;
|
|
i--;
|
|
}
|
|
if (stateCount[0] > maxCount)
|
|
{
|
|
return NaN;
|
|
}
|
|
|
|
// Now also count down from center
|
|
i = startI + 1;
|
|
while (i < maxI && image[centerJ + i*qrcode.width] && stateCount[1] <= maxCount)
|
|
{
|
|
stateCount[1]++;
|
|
i++;
|
|
}
|
|
if (i == maxI || stateCount[1] > maxCount)
|
|
{
|
|
return NaN;
|
|
}
|
|
while (i < maxI && !image[centerJ + i*qrcode.width] && stateCount[2] <= maxCount)
|
|
{
|
|
stateCount[2]++;
|
|
i++;
|
|
}
|
|
if (stateCount[2] > maxCount)
|
|
{
|
|
return NaN;
|
|
}
|
|
|
|
var stateCountTotal = stateCount[0] + stateCount[1] + stateCount[2];
|
|
if (5 * Math.abs(stateCountTotal - originalStateCountTotal) >= 2 * originalStateCountTotal)
|
|
{
|
|
return NaN;
|
|
}
|
|
|
|
return this.foundPatternCross(stateCount)?this.centerFromEnd(stateCount, i):NaN;
|
|
}
|
|
|
|
this.handlePossibleCenter=function( stateCount, i, j)
|
|
{
|
|
var stateCountTotal = stateCount[0] + stateCount[1] + stateCount[2];
|
|
var centerJ = this.centerFromEnd(stateCount, j);
|
|
var centerI = this.crossCheckVertical(i, Math.floor (centerJ), 2 * stateCount[1], stateCountTotal);
|
|
if (!isNaN(centerI))
|
|
{
|
|
var estimatedModuleSize = (stateCount[0] + stateCount[1] + stateCount[2]) / 3.0;
|
|
var max = this.possibleCenters.length;
|
|
for (var index = 0; index < max; index++)
|
|
{
|
|
var center = this.possibleCenters[index];
|
|
// Look for about the same center and module size:
|
|
if (center.aboutEquals(estimatedModuleSize, centerI, centerJ))
|
|
{
|
|
return new AlignmentPattern(centerJ, centerI, estimatedModuleSize);
|
|
}
|
|
}
|
|
// Hadn't found this before; save it
|
|
var point = new AlignmentPattern(centerJ, centerI, estimatedModuleSize);
|
|
this.possibleCenters.push(point);
|
|
if (this.resultPointCallback != null)
|
|
{
|
|
this.resultPointCallback.foundPossibleResultPoint(point);
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
this.find = function()
|
|
{
|
|
var startX = this.startX;
|
|
var height = this.height;
|
|
var maxJ = startX + width;
|
|
var middleI = startY + (height >> 1);
|
|
// We are looking for black/white/black modules in 1:1:1 ratio;
|
|
// this tracks the number of black/white/black modules seen so far
|
|
var stateCount = new Array(0,0,0);
|
|
for (var iGen = 0; iGen < height; iGen++)
|
|
{
|
|
// Search from middle outwards
|
|
var i = middleI + ((iGen & 0x01) == 0?((iGen + 1) >> 1):- ((iGen + 1) >> 1));
|
|
stateCount[0] = 0;
|
|
stateCount[1] = 0;
|
|
stateCount[2] = 0;
|
|
var j = startX;
|
|
// Burn off leading white pixels before anything else; if we start in the middle of
|
|
// a white run, it doesn't make sense to count its length, since we don't know if the
|
|
// white run continued to the left of the start point
|
|
while (j < maxJ && !image[j + qrcode.width* i])
|
|
{
|
|
j++;
|
|
}
|
|
var currentState = 0;
|
|
while (j < maxJ)
|
|
{
|
|
if (image[j + i*qrcode.width])
|
|
{
|
|
// Black pixel
|
|
if (currentState == 1)
|
|
{
|
|
// Counting black pixels
|
|
stateCount[currentState]++;
|
|
}
|
|
else
|
|
{
|
|
// Counting white pixels
|
|
if (currentState == 2)
|
|
{
|
|
// A winner?
|
|
if (this.foundPatternCross(stateCount))
|
|
{
|
|
// Yes
|
|
var confirmed = this.handlePossibleCenter(stateCount, i, j);
|
|
if (confirmed != null)
|
|
{
|
|
return confirmed;
|
|
}
|
|
}
|
|
stateCount[0] = stateCount[2];
|
|
stateCount[1] = 1;
|
|
stateCount[2] = 0;
|
|
currentState = 1;
|
|
}
|
|
else
|
|
{
|
|
stateCount[++currentState]++;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// White pixel
|
|
if (currentState == 1)
|
|
{
|
|
// Counting black pixels
|
|
currentState++;
|
|
}
|
|
stateCount[currentState]++;
|
|
}
|
|
j++;
|
|
}
|
|
if (this.foundPatternCross(stateCount))
|
|
{
|
|
var confirmed = this.handlePossibleCenter(stateCount, i, maxJ);
|
|
if (confirmed != null)
|
|
{
|
|
return confirmed;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Hmm, nothing we saw was observed and confirmed twice. If we had
|
|
// any guess at all, return it.
|
|
if (!(this.possibleCenters.length == 0))
|
|
{
|
|
return this.possibleCenters[0];
|
|
}
|
|
|
|
throw "Couldn't find enough alignment patterns";
|
|
}
|
|
|
|
}
|
|
// Source: public/src/js/jsqrcode/databr.js
|
|
/*
|
|
Ported to JavaScript by Lazar Laszlo 2011
|
|
|
|
lazarsoft@gmail.com, www.lazarsoft.info
|
|
|
|
*/
|
|
|
|
/*
|
|
*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
function QRCodeDataBlockReader(blocks, version, numErrorCorrectionCode)
|
|
{
|
|
this.blockPointer = 0;
|
|
this.bitPointer = 7;
|
|
this.dataLength = 0;
|
|
this.blocks = blocks;
|
|
this.numErrorCorrectionCode = numErrorCorrectionCode;
|
|
if (version <= 9)
|
|
this.dataLengthMode = 0;
|
|
else if (version >= 10 && version <= 26)
|
|
this.dataLengthMode = 1;
|
|
else if (version >= 27 && version <= 40)
|
|
this.dataLengthMode = 2;
|
|
|
|
this.getNextBits = function( numBits)
|
|
{
|
|
var bits = 0;
|
|
if (numBits < this.bitPointer + 1)
|
|
{
|
|
// next word fits into current data block
|
|
var mask = 0;
|
|
for (var i = 0; i < numBits; i++)
|
|
{
|
|
mask += (1 << i);
|
|
}
|
|
mask <<= (this.bitPointer - numBits + 1);
|
|
|
|
bits = (this.blocks[this.blockPointer] & mask) >> (this.bitPointer - numBits + 1);
|
|
this.bitPointer -= numBits;
|
|
return bits;
|
|
}
|
|
else if (numBits < this.bitPointer + 1 + 8)
|
|
{
|
|
// next word crosses 2 data blocks
|
|
var mask1 = 0;
|
|
for (var i = 0; i < this.bitPointer + 1; i++)
|
|
{
|
|
mask1 += (1 << i);
|
|
}
|
|
bits = (this.blocks[this.blockPointer] & mask1) << (numBits - (this.bitPointer + 1));
|
|
this.blockPointer++;
|
|
bits += ((this.blocks[this.blockPointer]) >> (8 - (numBits - (this.bitPointer + 1))));
|
|
|
|
this.bitPointer = this.bitPointer - numBits % 8;
|
|
if (this.bitPointer < 0)
|
|
{
|
|
this.bitPointer = 8 + this.bitPointer;
|
|
}
|
|
return bits;
|
|
}
|
|
else if (numBits < this.bitPointer + 1 + 16)
|
|
{
|
|
// next word crosses 3 data blocks
|
|
var mask1 = 0; // mask of first block
|
|
var mask3 = 0; // mask of 3rd block
|
|
//bitPointer + 1 : number of bits of the 1st block
|
|
//8 : number of the 2nd block (note that use already 8bits because next word uses 3 data blocks)
|
|
//numBits - (bitPointer + 1 + 8) : number of bits of the 3rd block
|
|
for (var i = 0; i < this.bitPointer + 1; i++)
|
|
{
|
|
mask1 += (1 << i);
|
|
}
|
|
var bitsFirstBlock = (this.blocks[this.blockPointer] & mask1) << (numBits - (this.bitPointer + 1));
|
|
this.blockPointer++;
|
|
|
|
var bitsSecondBlock = this.blocks[this.blockPointer] << (numBits - (this.bitPointer + 1 + 8));
|
|
this.blockPointer++;
|
|
|
|
for (var i = 0; i < numBits - (this.bitPointer + 1 + 8); i++)
|
|
{
|
|
mask3 += (1 << i);
|
|
}
|
|
mask3 <<= 8 - (numBits - (this.bitPointer + 1 + 8));
|
|
var bitsThirdBlock = (this.blocks[this.blockPointer] & mask3) >> (8 - (numBits - (this.bitPointer + 1 + 8)));
|
|
|
|
bits = bitsFirstBlock + bitsSecondBlock + bitsThirdBlock;
|
|
this.bitPointer = this.bitPointer - (numBits - 8) % 8;
|
|
if (this.bitPointer < 0)
|
|
{
|
|
this.bitPointer = 8 + this.bitPointer;
|
|
}
|
|
return bits;
|
|
}
|
|
else
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
this.NextMode=function()
|
|
{
|
|
if ((this.blockPointer > this.blocks.length - this.numErrorCorrectionCode - 2))
|
|
return 0;
|
|
else
|
|
return this.getNextBits(4);
|
|
}
|
|
this.getDataLength=function( modeIndicator)
|
|
{
|
|
var index = 0;
|
|
while (true)
|
|
{
|
|
if ((modeIndicator >> index) == 1)
|
|
break;
|
|
index++;
|
|
}
|
|
|
|
return this.getNextBits(qrcode.sizeOfDataLengthInfo[this.dataLengthMode][index]);
|
|
}
|
|
this.getRomanAndFigureString=function( dataLength)
|
|
{
|
|
var length = dataLength;
|
|
var intData = 0;
|
|
var strData = "";
|
|
var tableRomanAndFigure = new Array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', ' ', '$', '%', '*', '+', '-', '.', '/', ':');
|
|
do
|
|
{
|
|
if (length > 1)
|
|
{
|
|
intData = this.getNextBits(11);
|
|
var firstLetter = Math.floor(intData / 45);
|
|
var secondLetter = intData % 45;
|
|
strData += tableRomanAndFigure[firstLetter];
|
|
strData += tableRomanAndFigure[secondLetter];
|
|
length -= 2;
|
|
}
|
|
else if (length == 1)
|
|
{
|
|
intData = this.getNextBits(6);
|
|
strData += tableRomanAndFigure[intData];
|
|
length -= 1;
|
|
}
|
|
}
|
|
while (length > 0);
|
|
|
|
return strData;
|
|
}
|
|
this.getFigureString=function( dataLength)
|
|
{
|
|
var length = dataLength;
|
|
var intData = 0;
|
|
var strData = "";
|
|
do
|
|
{
|
|
if (length >= 3)
|
|
{
|
|
intData = this.getNextBits(10);
|
|
if (intData < 100)
|
|
strData += "0";
|
|
if (intData < 10)
|
|
strData += "0";
|
|
length -= 3;
|
|
}
|
|
else if (length == 2)
|
|
{
|
|
intData = this.getNextBits(7);
|
|
if (intData < 10)
|
|
strData += "0";
|
|
length -= 2;
|
|
}
|
|
else if (length == 1)
|
|
{
|
|
intData = this.getNextBits(4);
|
|
length -= 1;
|
|
}
|
|
strData += intData;
|
|
}
|
|
while (length > 0);
|
|
|
|
return strData;
|
|
}
|
|
this.get8bitByteArray=function( dataLength)
|
|
{
|
|
var length = dataLength;
|
|
var intData = 0;
|
|
var output = new Array();
|
|
|
|
do
|
|
{
|
|
intData = this.getNextBits(8);
|
|
output.push( intData);
|
|
length--;
|
|
}
|
|
while (length > 0);
|
|
return output;
|
|
}
|
|
this.getKanjiString=function( dataLength)
|
|
{
|
|
var length = dataLength;
|
|
var intData = 0;
|
|
var unicodeString = "";
|
|
do
|
|
{
|
|
intData = getNextBits(13);
|
|
var lowerByte = intData % 0xC0;
|
|
var higherByte = intData / 0xC0;
|
|
|
|
var tempWord = (higherByte << 8) + lowerByte;
|
|
var shiftjisWord = 0;
|
|
if (tempWord + 0x8140 <= 0x9FFC)
|
|
{
|
|
// between 8140 - 9FFC on Shift_JIS character set
|
|
shiftjisWord = tempWord + 0x8140;
|
|
}
|
|
else
|
|
{
|
|
// between E040 - EBBF on Shift_JIS character set
|
|
shiftjisWord = tempWord + 0xC140;
|
|
}
|
|
|
|
//var tempByte = new Array(0,0);
|
|
//tempByte[0] = (sbyte) (shiftjisWord >> 8);
|
|
//tempByte[1] = (sbyte) (shiftjisWord & 0xFF);
|
|
//unicodeString += new String(SystemUtils.ToCharArray(SystemUtils.ToByteArray(tempByte)));
|
|
unicodeString += String.fromCharCode(shiftjisWord);
|
|
length--;
|
|
}
|
|
while (length > 0);
|
|
|
|
|
|
return unicodeString;
|
|
}
|
|
|
|
this.__defineGetter__("DataByte", function()
|
|
{
|
|
var output = new Array();
|
|
var MODE_NUMBER = 1;
|
|
var MODE_ROMAN_AND_NUMBER = 2;
|
|
var MODE_8BIT_BYTE = 4;
|
|
var MODE_KANJI = 8;
|
|
do
|
|
{
|
|
var mode = this.NextMode();
|
|
//canvas.println("mode: " + mode);
|
|
if (mode == 0)
|
|
{
|
|
if (output.length > 0)
|
|
break;
|
|
else
|
|
throw "Empty data block";
|
|
}
|
|
//if (mode != 1 && mode != 2 && mode != 4 && mode != 8)
|
|
// break;
|
|
//}
|
|
if (mode != MODE_NUMBER && mode != MODE_ROMAN_AND_NUMBER && mode != MODE_8BIT_BYTE && mode != MODE_KANJI)
|
|
{
|
|
/* canvas.println("Invalid mode: " + mode);
|
|
mode = guessMode(mode);
|
|
canvas.println("Guessed mode: " + mode); */
|
|
throw "Invalid mode: " + mode + " in (block:" + this.blockPointer + " bit:" + this.bitPointer + ")";
|
|
}
|
|
dataLength = this.getDataLength(mode);
|
|
if (dataLength < 1)
|
|
throw "Invalid data length: " + dataLength;
|
|
//canvas.println("length: " + dataLength);
|
|
switch (mode)
|
|
{
|
|
|
|
case MODE_NUMBER:
|
|
//canvas.println("Mode: Figure");
|
|
var temp_str = this.getFigureString(dataLength);
|
|
var ta = new Array(temp_str.length);
|
|
for(var j=0;j<temp_str.length;j++)
|
|
ta[j]=temp_str.charCodeAt(j);
|
|
output.push(ta);
|
|
break;
|
|
|
|
case MODE_ROMAN_AND_NUMBER:
|
|
//canvas.println("Mode: Roman&Figure");
|
|
var temp_str = this.getRomanAndFigureString(dataLength);
|
|
var ta = new Array(temp_str.length);
|
|
for(var j=0;j<temp_str.length;j++)
|
|
ta[j]=temp_str.charCodeAt(j);
|
|
output.push(ta );
|
|
//output.Write(SystemUtils.ToByteArray(temp_sbyteArray2), 0, temp_sbyteArray2.Length);
|
|
break;
|
|
|
|
case MODE_8BIT_BYTE:
|
|
//canvas.println("Mode: 8bit Byte");
|
|
//sbyte[] temp_sbyteArray3;
|
|
var temp_sbyteArray3 = this.get8bitByteArray(dataLength);
|
|
output.push(temp_sbyteArray3);
|
|
//output.Write(SystemUtils.ToByteArray(temp_sbyteArray3), 0, temp_sbyteArray3.Length);
|
|
break;
|
|
|
|
case MODE_KANJI:
|
|
//canvas.println("Mode: Kanji");
|
|
//sbyte[] temp_sbyteArray4;
|
|
//temp_sbyteArray4 = SystemUtils.ToSByteArray(SystemUtils.ToByteArray(getKanjiString(dataLength)));
|
|
//output.Write(SystemUtils.ToByteArray(temp_sbyteArray4), 0, temp_sbyteArray4.Length);
|
|
var temp_str = this.getKanjiString(dataLength);
|
|
output.push(temp_str);
|
|
break;
|
|
}
|
|
//
|
|
//canvas.println("DataLength: " + dataLength);
|
|
//Console.out.println(dataString);
|
|
}
|
|
while (true);
|
|
return output;
|
|
});
|
|
}
|
|
|
|
// Source: public/lib/momentjs/min/moment.min.js
|
|
//! moment.js
|
|
//! version : 2.5.1
|
|
//! authors : Tim Wood, Iskren Chernev, Moment.js contributors
|
|
//! license : MIT
|
|
//! momentjs.com
|
|
(function(a){function b(){return{empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1}}function c(a,b){return function(c){return k(a.call(this,c),b)}}function d(a,b){return function(c){return this.lang().ordinal(a.call(this,c),b)}}function e(){}function f(a){w(a),h(this,a)}function g(a){var b=q(a),c=b.year||0,d=b.month||0,e=b.week||0,f=b.day||0,g=b.hour||0,h=b.minute||0,i=b.second||0,j=b.millisecond||0;this._milliseconds=+j+1e3*i+6e4*h+36e5*g,this._days=+f+7*e,this._months=+d+12*c,this._data={},this._bubble()}function h(a,b){for(var c in b)b.hasOwnProperty(c)&&(a[c]=b[c]);return b.hasOwnProperty("toString")&&(a.toString=b.toString),b.hasOwnProperty("valueOf")&&(a.valueOf=b.valueOf),a}function i(a){var b,c={};for(b in a)a.hasOwnProperty(b)&&qb.hasOwnProperty(b)&&(c[b]=a[b]);return c}function j(a){return 0>a?Math.ceil(a):Math.floor(a)}function k(a,b,c){for(var d=""+Math.abs(a),e=a>=0;d.length<b;)d="0"+d;return(e?c?"+":"":"-")+d}function l(a,b,c,d){var e,f,g=b._milliseconds,h=b._days,i=b._months;g&&a._d.setTime(+a._d+g*c),(h||i)&&(e=a.minute(),f=a.hour()),h&&a.date(a.date()+h*c),i&&a.month(a.month()+i*c),g&&!d&&db.updateOffset(a),(h||i)&&(a.minute(e),a.hour(f))}function m(a){return"[object Array]"===Object.prototype.toString.call(a)}function n(a){return"[object Date]"===Object.prototype.toString.call(a)||a instanceof Date}function o(a,b,c){var d,e=Math.min(a.length,b.length),f=Math.abs(a.length-b.length),g=0;for(d=0;e>d;d++)(c&&a[d]!==b[d]||!c&&s(a[d])!==s(b[d]))&&g++;return g+f}function p(a){if(a){var b=a.toLowerCase().replace(/(.)s$/,"$1");a=Tb[a]||Ub[b]||b}return a}function q(a){var b,c,d={};for(c in a)a.hasOwnProperty(c)&&(b=p(c),b&&(d[b]=a[c]));return d}function r(b){var c,d;if(0===b.indexOf("week"))c=7,d="day";else{if(0!==b.indexOf("month"))return;c=12,d="month"}db[b]=function(e,f){var g,h,i=db.fn._lang[b],j=[];if("number"==typeof e&&(f=e,e=a),h=function(a){var b=db().utc().set(d,a);return i.call(db.fn._lang,b,e||"")},null!=f)return h(f);for(g=0;c>g;g++)j.push(h(g));return j}}function s(a){var b=+a,c=0;return 0!==b&&isFinite(b)&&(c=b>=0?Math.floor(b):Math.ceil(b)),c}function t(a,b){return new Date(Date.UTC(a,b+1,0)).getUTCDate()}function u(a){return v(a)?366:365}function v(a){return a%4===0&&a%100!==0||a%400===0}function w(a){var b;a._a&&-2===a._pf.overflow&&(b=a._a[jb]<0||a._a[jb]>11?jb:a._a[kb]<1||a._a[kb]>t(a._a[ib],a._a[jb])?kb:a._a[lb]<0||a._a[lb]>23?lb:a._a[mb]<0||a._a[mb]>59?mb:a._a[nb]<0||a._a[nb]>59?nb:a._a[ob]<0||a._a[ob]>999?ob:-1,a._pf._overflowDayOfYear&&(ib>b||b>kb)&&(b=kb),a._pf.overflow=b)}function x(a){return null==a._isValid&&(a._isValid=!isNaN(a._d.getTime())&&a._pf.overflow<0&&!a._pf.empty&&!a._pf.invalidMonth&&!a._pf.nullInput&&!a._pf.invalidFormat&&!a._pf.userInvalidated,a._strict&&(a._isValid=a._isValid&&0===a._pf.charsLeftOver&&0===a._pf.unusedTokens.length)),a._isValid}function y(a){return a?a.toLowerCase().replace("_","-"):a}function z(a,b){return b._isUTC?db(a).zone(b._offset||0):db(a).local()}function A(a,b){return b.abbr=a,pb[a]||(pb[a]=new e),pb[a].set(b),pb[a]}function B(a){delete pb[a]}function C(a){var b,c,d,e,f=0,g=function(a){if(!pb[a]&&rb)try{require("./lang/"+a)}catch(b){}return pb[a]};if(!a)return db.fn._lang;if(!m(a)){if(c=g(a))return c;a=[a]}for(;f<a.length;){for(e=y(a[f]).split("-"),b=e.length,d=y(a[f+1]),d=d?d.split("-"):null;b>0;){if(c=g(e.slice(0,b).join("-")))return c;if(d&&d.length>=b&&o(e,d,!0)>=b-1)break;b--}f++}return db.fn._lang}function D(a){return a.match(/\[[\s\S]/)?a.replace(/^\[|\]$/g,""):a.replace(/\\/g,"")}function E(a){var b,c,d=a.match(vb);for(b=0,c=d.length;c>b;b++)d[b]=Yb[d[b]]?Yb[d[b]]:D(d[b]);return function(e){var f="";for(b=0;c>b;b++)f+=d[b]instanceof Function?d[b].call(e,a):d[b];return f}}function F(a,b){return a.isValid()?(b=G(b,a.lang()),Vb[b]||(Vb[b]=E(b)),Vb[b](a)):a.lang().invalidDate()}function G(a,b){function c(a){return b.longDateFormat(a)||a}var d=5;for(wb.lastIndex=0;d>=0&&wb.test(a);)a=a.replace(wb,c),wb.lastIndex=0,d-=1;return a}function H(a,b){var c,d=b._strict;switch(a){case"DDDD":return Ib;case"YYYY":case"GGGG":case"gggg":return d?Jb:zb;case"Y":case"G":case"g":return Lb;case"YYYYYY":case"YYYYY":case"GGGGG":case"ggggg":return d?Kb:Ab;case"S":if(d)return Gb;case"SS":if(d)return Hb;case"SSS":if(d)return Ib;case"DDD":return yb;case"MMM":case"MMMM":case"dd":case"ddd":case"dddd":return Cb;case"a":case"A":return C(b._l)._meridiemParse;case"X":return Fb;case"Z":case"ZZ":return Db;case"T":return Eb;case"SSSS":return Bb;case"MM":case"DD":case"YY":case"GG":case"gg":case"HH":case"hh":case"mm":case"ss":case"ww":case"WW":return d?Hb:xb;case"M":case"D":case"d":case"H":case"h":case"m":case"s":case"w":case"W":case"e":case"E":return xb;default:return c=new RegExp(P(O(a.replace("\\","")),"i"))}}function I(a){a=a||"";var b=a.match(Db)||[],c=b[b.length-1]||[],d=(c+"").match(Qb)||["-",0,0],e=+(60*d[1])+s(d[2]);return"+"===d[0]?-e:e}function J(a,b,c){var d,e=c._a;switch(a){case"M":case"MM":null!=b&&(e[jb]=s(b)-1);break;case"MMM":case"MMMM":d=C(c._l).monthsParse(b),null!=d?e[jb]=d:c._pf.invalidMonth=b;break;case"D":case"DD":null!=b&&(e[kb]=s(b));break;case"DDD":case"DDDD":null!=b&&(c._dayOfYear=s(b));break;case"YY":e[ib]=s(b)+(s(b)>68?1900:2e3);break;case"YYYY":case"YYYYY":case"YYYYYY":e[ib]=s(b);break;case"a":case"A":c._isPm=C(c._l).isPM(b);break;case"H":case"HH":case"h":case"hh":e[lb]=s(b);break;case"m":case"mm":e[mb]=s(b);break;case"s":case"ss":e[nb]=s(b);break;case"S":case"SS":case"SSS":case"SSSS":e[ob]=s(1e3*("0."+b));break;case"X":c._d=new Date(1e3*parseFloat(b));break;case"Z":case"ZZ":c._useUTC=!0,c._tzm=I(b);break;case"w":case"ww":case"W":case"WW":case"d":case"dd":case"ddd":case"dddd":case"e":case"E":a=a.substr(0,1);case"gg":case"gggg":case"GG":case"GGGG":case"GGGGG":a=a.substr(0,2),b&&(c._w=c._w||{},c._w[a]=b)}}function K(a){var b,c,d,e,f,g,h,i,j,k,l=[];if(!a._d){for(d=M(a),a._w&&null==a._a[kb]&&null==a._a[jb]&&(f=function(b){var c=parseInt(b,10);return b?b.length<3?c>68?1900+c:2e3+c:c:null==a._a[ib]?db().weekYear():a._a[ib]},g=a._w,null!=g.GG||null!=g.W||null!=g.E?h=Z(f(g.GG),g.W||1,g.E,4,1):(i=C(a._l),j=null!=g.d?V(g.d,i):null!=g.e?parseInt(g.e,10)+i._week.dow:0,k=parseInt(g.w,10)||1,null!=g.d&&j<i._week.dow&&k++,h=Z(f(g.gg),k,j,i._week.doy,i._week.dow)),a._a[ib]=h.year,a._dayOfYear=h.dayOfYear),a._dayOfYear&&(e=null==a._a[ib]?d[ib]:a._a[ib],a._dayOfYear>u(e)&&(a._pf._overflowDayOfYear=!0),c=U(e,0,a._dayOfYear),a._a[jb]=c.getUTCMonth(),a._a[kb]=c.getUTCDate()),b=0;3>b&&null==a._a[b];++b)a._a[b]=l[b]=d[b];for(;7>b;b++)a._a[b]=l[b]=null==a._a[b]?2===b?1:0:a._a[b];l[lb]+=s((a._tzm||0)/60),l[mb]+=s((a._tzm||0)%60),a._d=(a._useUTC?U:T).apply(null,l)}}function L(a){var b;a._d||(b=q(a._i),a._a=[b.year,b.month,b.day,b.hour,b.minute,b.second,b.millisecond],K(a))}function M(a){var b=new Date;return a._useUTC?[b.getUTCFullYear(),b.getUTCMonth(),b.getUTCDate()]:[b.getFullYear(),b.getMonth(),b.getDate()]}function N(a){a._a=[],a._pf.empty=!0;var b,c,d,e,f,g=C(a._l),h=""+a._i,i=h.length,j=0;for(d=G(a._f,g).match(vb)||[],b=0;b<d.length;b++)e=d[b],c=(h.match(H(e,a))||[])[0],c&&(f=h.substr(0,h.indexOf(c)),f.length>0&&a._pf.unusedInput.push(f),h=h.slice(h.indexOf(c)+c.length),j+=c.length),Yb[e]?(c?a._pf.empty=!1:a._pf.unusedTokens.push(e),J(e,c,a)):a._strict&&!c&&a._pf.unusedTokens.push(e);a._pf.charsLeftOver=i-j,h.length>0&&a._pf.unusedInput.push(h),a._isPm&&a._a[lb]<12&&(a._a[lb]+=12),a._isPm===!1&&12===a._a[lb]&&(a._a[lb]=0),K(a),w(a)}function O(a){return a.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(a,b,c,d,e){return b||c||d||e})}function P(a){return a.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function Q(a){var c,d,e,f,g;if(0===a._f.length)return a._pf.invalidFormat=!0,a._d=new Date(0/0),void 0;for(f=0;f<a._f.length;f++)g=0,c=h({},a),c._pf=b(),c._f=a._f[f],N(c),x(c)&&(g+=c._pf.charsLeftOver,g+=10*c._pf.unusedTokens.length,c._pf.score=g,(null==e||e>g)&&(e=g,d=c));h(a,d||c)}function R(a){var b,c,d=a._i,e=Mb.exec(d);if(e){for(a._pf.iso=!0,b=0,c=Ob.length;c>b;b++)if(Ob[b][1].exec(d)){a._f=Ob[b][0]+(e[6]||" ");break}for(b=0,c=Pb.length;c>b;b++)if(Pb[b][1].exec(d)){a._f+=Pb[b][0];break}d.match(Db)&&(a._f+="Z"),N(a)}else a._d=new Date(d)}function S(b){var c=b._i,d=sb.exec(c);c===a?b._d=new Date:d?b._d=new Date(+d[1]):"string"==typeof c?R(b):m(c)?(b._a=c.slice(0),K(b)):n(c)?b._d=new Date(+c):"object"==typeof c?L(b):b._d=new Date(c)}function T(a,b,c,d,e,f,g){var h=new Date(a,b,c,d,e,f,g);return 1970>a&&h.setFullYear(a),h}function U(a){var b=new Date(Date.UTC.apply(null,arguments));return 1970>a&&b.setUTCFullYear(a),b}function V(a,b){if("string"==typeof a)if(isNaN(a)){if(a=b.weekdaysParse(a),"number"!=typeof a)return null}else a=parseInt(a,10);return a}function W(a,b,c,d,e){return e.relativeTime(b||1,!!c,a,d)}function X(a,b,c){var d=hb(Math.abs(a)/1e3),e=hb(d/60),f=hb(e/60),g=hb(f/24),h=hb(g/365),i=45>d&&["s",d]||1===e&&["m"]||45>e&&["mm",e]||1===f&&["h"]||22>f&&["hh",f]||1===g&&["d"]||25>=g&&["dd",g]||45>=g&&["M"]||345>g&&["MM",hb(g/30)]||1===h&&["y"]||["yy",h];return i[2]=b,i[3]=a>0,i[4]=c,W.apply({},i)}function Y(a,b,c){var d,e=c-b,f=c-a.day();return f>e&&(f-=7),e-7>f&&(f+=7),d=db(a).add("d",f),{week:Math.ceil(d.dayOfYear()/7),year:d.year()}}function Z(a,b,c,d,e){var f,g,h=U(a,0,1).getUTCDay();return c=null!=c?c:e,f=e-h+(h>d?7:0)-(e>h?7:0),g=7*(b-1)+(c-e)+f+1,{year:g>0?a:a-1,dayOfYear:g>0?g:u(a-1)+g}}function $(a){var b=a._i,c=a._f;return null===b?db.invalid({nullInput:!0}):("string"==typeof b&&(a._i=b=C().preparse(b)),db.isMoment(b)?(a=i(b),a._d=new Date(+b._d)):c?m(c)?Q(a):N(a):S(a),new f(a))}function _(a,b){db.fn[a]=db.fn[a+"s"]=function(a){var c=this._isUTC?"UTC":"";return null!=a?(this._d["set"+c+b](a),db.updateOffset(this),this):this._d["get"+c+b]()}}function ab(a){db.duration.fn[a]=function(){return this._data[a]}}function bb(a,b){db.duration.fn["as"+a]=function(){return+this/b}}function cb(a){var b=!1,c=db;"undefined"==typeof ender&&(a?(gb.moment=function(){return!b&&console&&console.warn&&(b=!0,console.warn("Accessing Moment through the global scope is deprecated, and will be removed in an upcoming release.")),c.apply(null,arguments)},h(gb.moment,c)):gb.moment=db)}for(var db,eb,fb="2.5.1",gb=this,hb=Math.round,ib=0,jb=1,kb=2,lb=3,mb=4,nb=5,ob=6,pb={},qb={_isAMomentObject:null,_i:null,_f:null,_l:null,_strict:null,_isUTC:null,_offset:null,_pf:null,_lang:null},rb="undefined"!=typeof module&&module.exports&&"undefined"!=typeof require,sb=/^\/?Date\((\-?\d+)/i,tb=/(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/,ub=/^(-)?P(?:(?:([0-9,.]*)Y)?(?:([0-9,.]*)M)?(?:([0-9,.]*)D)?(?:T(?:([0-9,.]*)H)?(?:([0-9,.]*)M)?(?:([0-9,.]*)S)?)?|([0-9,.]*)W)$/,vb=/(\[[^\[]*\])|(\\)?(Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|mm?|ss?|S{1,4}|X|zz?|ZZ?|.)/g,wb=/(\[[^\[]*\])|(\\)?(LT|LL?L?L?|l{1,4})/g,xb=/\d\d?/,yb=/\d{1,3}/,zb=/\d{1,4}/,Ab=/[+\-]?\d{1,6}/,Bb=/\d+/,Cb=/[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i,Db=/Z|[\+\-]\d\d:?\d\d/gi,Eb=/T/i,Fb=/[\+\-]?\d+(\.\d{1,3})?/,Gb=/\d/,Hb=/\d\d/,Ib=/\d{3}/,Jb=/\d{4}/,Kb=/[+-]?\d{6}/,Lb=/[+-]?\d+/,Mb=/^\s*(?:[+-]\d{6}|\d{4})-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Nb="YYYY-MM-DDTHH:mm:ssZ",Ob=[["YYYYYY-MM-DD",/[+-]\d{6}-\d{2}-\d{2}/],["YYYY-MM-DD",/\d{4}-\d{2}-\d{2}/],["GGGG-[W]WW-E",/\d{4}-W\d{2}-\d/],["GGGG-[W]WW",/\d{4}-W\d{2}/],["YYYY-DDD",/\d{4}-\d{3}/]],Pb=[["HH:mm:ss.SSSS",/(T| )\d\d:\d\d:\d\d\.\d{1,3}/],["HH:mm:ss",/(T| )\d\d:\d\d:\d\d/],["HH:mm",/(T| )\d\d:\d\d/],["HH",/(T| )\d\d/]],Qb=/([\+\-]|\d\d)/gi,Rb="Date|Hours|Minutes|Seconds|Milliseconds".split("|"),Sb={Milliseconds:1,Seconds:1e3,Minutes:6e4,Hours:36e5,Days:864e5,Months:2592e6,Years:31536e6},Tb={ms:"millisecond",s:"second",m:"minute",h:"hour",d:"day",D:"date",w:"week",W:"isoWeek",M:"month",y:"year",DDD:"dayOfYear",e:"weekday",E:"isoWeekday",gg:"weekYear",GG:"isoWeekYear"},Ub={dayofyear:"dayOfYear",isoweekday:"isoWeekday",isoweek:"isoWeek",weekyear:"weekYear",isoweekyear:"isoWeekYear"},Vb={},Wb="DDD w W M D d".split(" "),Xb="M D H h m s w W".split(" "),Yb={M:function(){return this.month()+1},MMM:function(a){return this.lang().monthsShort(this,a)},MMMM:function(a){return this.lang().months(this,a)},D:function(){return this.date()},DDD:function(){return this.dayOfYear()},d:function(){return this.day()},dd:function(a){return this.lang().weekdaysMin(this,a)},ddd:function(a){return this.lang().weekdaysShort(this,a)},dddd:function(a){return this.lang().weekdays(this,a)},w:function(){return this.week()},W:function(){return this.isoWeek()},YY:function(){return k(this.year()%100,2)},YYYY:function(){return k(this.year(),4)},YYYYY:function(){return k(this.year(),5)},YYYYYY:function(){var a=this.year(),b=a>=0?"+":"-";return b+k(Math.abs(a),6)},gg:function(){return k(this.weekYear()%100,2)},gggg:function(){return k(this.weekYear(),4)},ggggg:function(){return k(this.weekYear(),5)},GG:function(){return k(this.isoWeekYear()%100,2)},GGGG:function(){return k(this.isoWeekYear(),4)},GGGGG:function(){return k(this.isoWeekYear(),5)},e:function(){return this.weekday()},E:function(){return this.isoWeekday()},a:function(){return this.lang().meridiem(this.hours(),this.minutes(),!0)},A:function(){return this.lang().meridiem(this.hours(),this.minutes(),!1)},H:function(){return this.hours()},h:function(){return this.hours()%12||12},m:function(){return this.minutes()},s:function(){return this.seconds()},S:function(){return s(this.milliseconds()/100)},SS:function(){return k(s(this.milliseconds()/10),2)},SSS:function(){return k(this.milliseconds(),3)},SSSS:function(){return k(this.milliseconds(),3)},Z:function(){var a=-this.zone(),b="+";return 0>a&&(a=-a,b="-"),b+k(s(a/60),2)+":"+k(s(a)%60,2)},ZZ:function(){var a=-this.zone(),b="+";return 0>a&&(a=-a,b="-"),b+k(s(a/60),2)+k(s(a)%60,2)},z:function(){return this.zoneAbbr()},zz:function(){return this.zoneName()},X:function(){return this.unix()},Q:function(){return this.quarter()}},Zb=["months","monthsShort","weekdays","weekdaysShort","weekdaysMin"];Wb.length;)eb=Wb.pop(),Yb[eb+"o"]=d(Yb[eb],eb);for(;Xb.length;)eb=Xb.pop(),Yb[eb+eb]=c(Yb[eb],2);for(Yb.DDDD=c(Yb.DDD,3),h(e.prototype,{set:function(a){var b,c;for(c in a)b=a[c],"function"==typeof b?this[c]=b:this["_"+c]=b},_months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),months:function(a){return this._months[a.month()]},_monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),monthsShort:function(a){return this._monthsShort[a.month()]},monthsParse:function(a){var b,c,d;for(this._monthsParse||(this._monthsParse=[]),b=0;12>b;b++)if(this._monthsParse[b]||(c=db.utc([2e3,b]),d="^"+this.months(c,"")+"|^"+this.monthsShort(c,""),this._monthsParse[b]=new RegExp(d.replace(".",""),"i")),this._monthsParse[b].test(a))return b},_weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdays:function(a){return this._weekdays[a.day()]},_weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysShort:function(a){return this._weekdaysShort[a.day()]},_weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),weekdaysMin:function(a){return this._weekdaysMin[a.day()]},weekdaysParse:function(a){var b,c,d;for(this._weekdaysParse||(this._weekdaysParse=[]),b=0;7>b;b++)if(this._weekdaysParse[b]||(c=db([2e3,1]).day(b),d="^"+this.weekdays(c,"")+"|^"+this.weekdaysShort(c,"")+"|^"+this.weekdaysMin(c,""),this._weekdaysParse[b]=new RegExp(d.replace(".",""),"i")),this._weekdaysParse[b].test(a))return b},_longDateFormat:{LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D YYYY",LLL:"MMMM D YYYY LT",LLLL:"dddd, MMMM D YYYY LT"},longDateFormat:function(a){var b=this._longDateFormat[a];return!b&&this._longDateFormat[a.toUpperCase()]&&(b=this._longDateFormat[a.toUpperCase()].replace(/MMMM|MM|DD|dddd/g,function(a){return a.slice(1)}),this._longDateFormat[a]=b),b},isPM:function(a){return"p"===(a+"").toLowerCase().charAt(0)},_meridiemParse:/[ap]\.?m?\.?/i,meridiem:function(a,b,c){return a>11?c?"pm":"PM":c?"am":"AM"},_calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},calendar:function(a,b){var c=this._calendar[a];return"function"==typeof c?c.apply(b):c},_relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},relativeTime:function(a,b,c,d){var e=this._relativeTime[c];return"function"==typeof e?e(a,b,c,d):e.replace(/%d/i,a)},pastFuture:function(a,b){var c=this._relativeTime[a>0?"future":"past"];return"function"==typeof c?c(b):c.replace(/%s/i,b)},ordinal:function(a){return this._ordinal.replace("%d",a)},_ordinal:"%d",preparse:function(a){return a},postformat:function(a){return a},week:function(a){return Y(a,this._week.dow,this._week.doy).week},_week:{dow:0,doy:6},_invalidDate:"Invalid date",invalidDate:function(){return this._invalidDate}}),db=function(c,d,e,f){var g;return"boolean"==typeof e&&(f=e,e=a),g={},g._isAMomentObject=!0,g._i=c,g._f=d,g._l=e,g._strict=f,g._isUTC=!1,g._pf=b(),$(g)},db.utc=function(c,d,e,f){var g;return"boolean"==typeof e&&(f=e,e=a),g={},g._isAMomentObject=!0,g._useUTC=!0,g._isUTC=!0,g._l=e,g._i=c,g._f=d,g._strict=f,g._pf=b(),$(g).utc()},db.unix=function(a){return db(1e3*a)},db.duration=function(a,b){var c,d,e,f=a,h=null;return db.isDuration(a)?f={ms:a._milliseconds,d:a._days,M:a._months}:"number"==typeof a?(f={},b?f[b]=a:f.milliseconds=a):(h=tb.exec(a))?(c="-"===h[1]?-1:1,f={y:0,d:s(h[kb])*c,h:s(h[lb])*c,m:s(h[mb])*c,s:s(h[nb])*c,ms:s(h[ob])*c}):(h=ub.exec(a))&&(c="-"===h[1]?-1:1,e=function(a){var b=a&&parseFloat(a.replace(",","."));return(isNaN(b)?0:b)*c},f={y:e(h[2]),M:e(h[3]),d:e(h[4]),h:e(h[5]),m:e(h[6]),s:e(h[7]),w:e(h[8])}),d=new g(f),db.isDuration(a)&&a.hasOwnProperty("_lang")&&(d._lang=a._lang),d},db.version=fb,db.defaultFormat=Nb,db.updateOffset=function(){},db.lang=function(a,b){var c;return a?(b?A(y(a),b):null===b?(B(a),a="en"):pb[a]||C(a),c=db.duration.fn._lang=db.fn._lang=C(a),c._abbr):db.fn._lang._abbr},db.langData=function(a){return a&&a._lang&&a._lang._abbr&&(a=a._lang._abbr),C(a)},db.isMoment=function(a){return a instanceof f||null!=a&&a.hasOwnProperty("_isAMomentObject")},db.isDuration=function(a){return a instanceof g},eb=Zb.length-1;eb>=0;--eb)r(Zb[eb]);for(db.normalizeUnits=function(a){return p(a)},db.invalid=function(a){var b=db.utc(0/0);return null!=a?h(b._pf,a):b._pf.userInvalidated=!0,b},db.parseZone=function(a){return db(a).parseZone()},h(db.fn=f.prototype,{clone:function(){return db(this)},valueOf:function(){return+this._d+6e4*(this._offset||0)},unix:function(){return Math.floor(+this/1e3)},toString:function(){return this.clone().lang("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},toDate:function(){return this._offset?new Date(+this):this._d},toISOString:function(){var a=db(this).utc();return 0<a.year()&&a.year()<=9999?F(a,"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]"):F(a,"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]")},toArray:function(){var a=this;return[a.year(),a.month(),a.date(),a.hours(),a.minutes(),a.seconds(),a.milliseconds()]},isValid:function(){return x(this)},isDSTShifted:function(){return this._a?this.isValid()&&o(this._a,(this._isUTC?db.utc(this._a):db(this._a)).toArray())>0:!1},parsingFlags:function(){return h({},this._pf)},invalidAt:function(){return this._pf.overflow},utc:function(){return this.zone(0)},local:function(){return this.zone(0),this._isUTC=!1,this},format:function(a){var b=F(this,a||db.defaultFormat);return this.lang().postformat(b)},add:function(a,b){var c;return c="string"==typeof a?db.duration(+b,a):db.duration(a,b),l(this,c,1),this},subtract:function(a,b){var c;return c="string"==typeof a?db.duration(+b,a):db.duration(a,b),l(this,c,-1),this},diff:function(a,b,c){var d,e,f=z(a,this),g=6e4*(this.zone()-f.zone());return b=p(b),"year"===b||"month"===b?(d=432e5*(this.daysInMonth()+f.daysInMonth()),e=12*(this.year()-f.year())+(this.month()-f.month()),e+=(this-db(this).startOf("month")-(f-db(f).startOf("month")))/d,e-=6e4*(this.zone()-db(this).startOf("month").zone()-(f.zone()-db(f).startOf("month").zone()))/d,"year"===b&&(e/=12)):(d=this-f,e="second"===b?d/1e3:"minute"===b?d/6e4:"hour"===b?d/36e5:"day"===b?(d-g)/864e5:"week"===b?(d-g)/6048e5:d),c?e:j(e)},from:function(a,b){return db.duration(this.diff(a)).lang(this.lang()._abbr).humanize(!b)},fromNow:function(a){return this.from(db(),a)},calendar:function(){var a=z(db(),this).startOf("day"),b=this.diff(a,"days",!0),c=-6>b?"sameElse":-1>b?"lastWeek":0>b?"lastDay":1>b?"sameDay":2>b?"nextDay":7>b?"nextWeek":"sameElse";return this.format(this.lang().calendar(c,this))},isLeapYear:function(){return v(this.year())},isDST:function(){return this.zone()<this.clone().month(0).zone()||this.zone()<this.clone().month(5).zone()},day:function(a){var b=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=a?(a=V(a,this.lang()),this.add({d:a-b})):b},month:function(a){var b,c=this._isUTC?"UTC":"";return null!=a?"string"==typeof a&&(a=this.lang().monthsParse(a),"number"!=typeof a)?this:(b=this.date(),this.date(1),this._d["set"+c+"Month"](a),this.date(Math.min(b,this.daysInMonth())),db.updateOffset(this),this):this._d["get"+c+"Month"]()},startOf:function(a){switch(a=p(a)){case"year":this.month(0);case"month":this.date(1);case"week":case"isoWeek":case"day":this.hours(0);case"hour":this.minutes(0);case"minute":this.seconds(0);case"second":this.milliseconds(0)}return"week"===a?this.weekday(0):"isoWeek"===a&&this.isoWeekday(1),this},endOf:function(a){return a=p(a),this.startOf(a).add("isoWeek"===a?"week":a,1).subtract("ms",1)},isAfter:function(a,b){return b="undefined"!=typeof b?b:"millisecond",+this.clone().startOf(b)>+db(a).startOf(b)},isBefore:function(a,b){return b="undefined"!=typeof b?b:"millisecond",+this.clone().startOf(b)<+db(a).startOf(b)},isSame:function(a,b){return b=b||"ms",+this.clone().startOf(b)===+z(a,this).startOf(b)},min:function(a){return a=db.apply(null,arguments),this>a?this:a},max:function(a){return a=db.apply(null,arguments),a>this?this:a},zone:function(a){var b=this._offset||0;return null==a?this._isUTC?b:this._d.getTimezoneOffset():("string"==typeof a&&(a=I(a)),Math.abs(a)<16&&(a=60*a),this._offset=a,this._isUTC=!0,b!==a&&l(this,db.duration(b-a,"m"),1,!0),this)},zoneAbbr:function(){return this._isUTC?"UTC":""},zoneName:function(){return this._isUTC?"Coordinated Universal Time":""},parseZone:function(){return this._tzm?this.zone(this._tzm):"string"==typeof this._i&&this.zone(this._i),this},hasAlignedHourOffset:function(a){return a=a?db(a).zone():0,(this.zone()-a)%60===0},daysInMonth:function(){return t(this.year(),this.month())},dayOfYear:function(a){var b=hb((db(this).startOf("day")-db(this).startOf("year"))/864e5)+1;return null==a?b:this.add("d",a-b)},quarter:function(){return Math.ceil((this.month()+1)/3)},weekYear:function(a){var b=Y(this,this.lang()._week.dow,this.lang()._week.doy).year;return null==a?b:this.add("y",a-b)},isoWeekYear:function(a){var b=Y(this,1,4).year;return null==a?b:this.add("y",a-b)},week:function(a){var b=this.lang().week(this);return null==a?b:this.add("d",7*(a-b))},isoWeek:function(a){var b=Y(this,1,4).week;return null==a?b:this.add("d",7*(a-b))},weekday:function(a){var b=(this.day()+7-this.lang()._week.dow)%7;return null==a?b:this.add("d",a-b)},isoWeekday:function(a){return null==a?this.day()||7:this.day(this.day()%7?a:a-7)},get:function(a){return a=p(a),this[a]()},set:function(a,b){return a=p(a),"function"==typeof this[a]&&this[a](b),this},lang:function(b){return b===a?this._lang:(this._lang=C(b),this)}}),eb=0;eb<Rb.length;eb++)_(Rb[eb].toLowerCase().replace(/s$/,""),Rb[eb]);_("year","FullYear"),db.fn.days=db.fn.day,db.fn.months=db.fn.month,db.fn.weeks=db.fn.week,db.fn.isoWeeks=db.fn.isoWeek,db.fn.toJSON=db.fn.toISOString,h(db.duration.fn=g.prototype,{_bubble:function(){var a,b,c,d,e=this._milliseconds,f=this._days,g=this._months,h=this._data;h.milliseconds=e%1e3,a=j(e/1e3),h.seconds=a%60,b=j(a/60),h.minutes=b%60,c=j(b/60),h.hours=c%24,f+=j(c/24),h.days=f%30,g+=j(f/30),h.months=g%12,d=j(g/12),h.years=d},weeks:function(){return j(this.days()/7)},valueOf:function(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*s(this._months/12)},humanize:function(a){var b=+this,c=X(b,!a,this.lang());return a&&(c=this.lang().pastFuture(b,c)),this.lang().postformat(c)},add:function(a,b){var c=db.duration(a,b);return this._milliseconds+=c._milliseconds,this._days+=c._days,this._months+=c._months,this._bubble(),this},subtract:function(a,b){var c=db.duration(a,b);return this._milliseconds-=c._milliseconds,this._days-=c._days,this._months-=c._months,this._bubble(),this},get:function(a){return a=p(a),this[a.toLowerCase()+"s"]()},as:function(a){return a=p(a),this["as"+a.charAt(0).toUpperCase()+a.slice(1)+"s"]()},lang:db.fn.lang,toIsoString:function(){var a=Math.abs(this.years()),b=Math.abs(this.months()),c=Math.abs(this.days()),d=Math.abs(this.hours()),e=Math.abs(this.minutes()),f=Math.abs(this.seconds()+this.milliseconds()/1e3);return this.asSeconds()?(this.asSeconds()<0?"-":"")+"P"+(a?a+"Y":"")+(b?b+"M":"")+(c?c+"D":"")+(d||e||f?"T":"")+(d?d+"H":"")+(e?e+"M":"")+(f?f+"S":""):"P0D"}});for(eb in Sb)Sb.hasOwnProperty(eb)&&(bb(eb,Sb[eb]),ab(eb.toLowerCase()));bb("Weeks",6048e5),db.duration.fn.asMonths=function(){return(+this-31536e6*this.years())/2592e6+12*this.years()},db.lang("en",{ordinal:function(a){var b=a%10,c=1===s(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th";return a+c}}),rb?(module.exports=db,cb(!0)):"function"==typeof define&&define.amd?define("moment",function(b,c,d){return d.config&&d.config()&&d.config().noGlobal!==!0&&cb(d.config().noGlobal===a),db}):cb()}).call(this); |