@depup/qrcode 1.5.4-depup.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -0
- package/bin/qrcode +159 -0
- package/changes.json +18 -0
- package/helper/to-sjis-browser.js +2 -0
- package/helper/to-sjis.js +105 -0
- package/lib/browser.js +76 -0
- package/lib/can-promise.js +7 -0
- package/lib/core/alignment-pattern.js +83 -0
- package/lib/core/alphanumeric-data.js +59 -0
- package/lib/core/bit-buffer.js +37 -0
- package/lib/core/bit-matrix.js +65 -0
- package/lib/core/byte-data.js +30 -0
- package/lib/core/error-correction-code.js +135 -0
- package/lib/core/error-correction-level.js +50 -0
- package/lib/core/finder-pattern.js +22 -0
- package/lib/core/format-info.js +29 -0
- package/lib/core/galois-field.js +69 -0
- package/lib/core/kanji-data.js +54 -0
- package/lib/core/mask-pattern.js +234 -0
- package/lib/core/mode.js +167 -0
- package/lib/core/numeric-data.js +43 -0
- package/lib/core/polynomial.js +62 -0
- package/lib/core/qrcode.js +495 -0
- package/lib/core/reed-solomon-encoder.js +56 -0
- package/lib/core/regex.js +31 -0
- package/lib/core/segments.js +330 -0
- package/lib/core/utils.js +63 -0
- package/lib/core/version-check.js +9 -0
- package/lib/core/version.js +163 -0
- package/lib/index.js +12 -0
- package/lib/renderer/canvas.js +63 -0
- package/lib/renderer/png.js +78 -0
- package/lib/renderer/svg-tag.js +81 -0
- package/lib/renderer/svg.js +19 -0
- package/lib/renderer/terminal/terminal-small.js +85 -0
- package/lib/renderer/terminal/terminal.js +49 -0
- package/lib/renderer/terminal.js +9 -0
- package/lib/renderer/utf8.js +71 -0
- package/lib/renderer/utils.js +99 -0
- package/lib/server.js +138 -0
- package/license +10 -0
- package/package.json +102 -0
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
const fs = require('fs')
|
|
2
|
+
const PNG = require('pngjs').PNG
|
|
3
|
+
const Utils = require('./utils')
|
|
4
|
+
|
|
5
|
+
exports.render = function render (qrData, options) {
|
|
6
|
+
const opts = Utils.getOptions(options)
|
|
7
|
+
const pngOpts = opts.rendererOpts
|
|
8
|
+
const size = Utils.getImageWidth(qrData.modules.size, opts)
|
|
9
|
+
|
|
10
|
+
pngOpts.width = size
|
|
11
|
+
pngOpts.height = size
|
|
12
|
+
|
|
13
|
+
const pngImage = new PNG(pngOpts)
|
|
14
|
+
Utils.qrToImageData(pngImage.data, qrData, opts)
|
|
15
|
+
|
|
16
|
+
return pngImage
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
exports.renderToDataURL = function renderToDataURL (qrData, options, cb) {
|
|
20
|
+
if (typeof cb === 'undefined') {
|
|
21
|
+
cb = options
|
|
22
|
+
options = undefined
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
exports.renderToBuffer(qrData, options, function (err, output) {
|
|
26
|
+
if (err) cb(err)
|
|
27
|
+
let url = 'data:image/png;base64,'
|
|
28
|
+
url += output.toString('base64')
|
|
29
|
+
cb(null, url)
|
|
30
|
+
})
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
exports.renderToBuffer = function renderToBuffer (qrData, options, cb) {
|
|
34
|
+
if (typeof cb === 'undefined') {
|
|
35
|
+
cb = options
|
|
36
|
+
options = undefined
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
const png = exports.render(qrData, options)
|
|
40
|
+
const buffer = []
|
|
41
|
+
|
|
42
|
+
png.on('error', cb)
|
|
43
|
+
|
|
44
|
+
png.on('data', function (data) {
|
|
45
|
+
buffer.push(data)
|
|
46
|
+
})
|
|
47
|
+
|
|
48
|
+
png.on('end', function () {
|
|
49
|
+
cb(null, Buffer.concat(buffer))
|
|
50
|
+
})
|
|
51
|
+
|
|
52
|
+
png.pack()
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
exports.renderToFile = function renderToFile (path, qrData, options, cb) {
|
|
56
|
+
if (typeof cb === 'undefined') {
|
|
57
|
+
cb = options
|
|
58
|
+
options = undefined
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
let called = false
|
|
62
|
+
const done = (...args) => {
|
|
63
|
+
if (called) return
|
|
64
|
+
called = true
|
|
65
|
+
cb.apply(null, args)
|
|
66
|
+
}
|
|
67
|
+
const stream = fs.createWriteStream(path)
|
|
68
|
+
|
|
69
|
+
stream.on('error', done)
|
|
70
|
+
stream.on('close', done)
|
|
71
|
+
|
|
72
|
+
exports.renderToFileStream(stream, qrData, options)
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
exports.renderToFileStream = function renderToFileStream (stream, qrData, options) {
|
|
76
|
+
const png = exports.render(qrData, options)
|
|
77
|
+
png.pack().pipe(stream)
|
|
78
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
const Utils = require('./utils')
|
|
2
|
+
|
|
3
|
+
function getColorAttrib (color, attrib) {
|
|
4
|
+
const alpha = color.a / 255
|
|
5
|
+
const str = attrib + '="' + color.hex + '"'
|
|
6
|
+
|
|
7
|
+
return alpha < 1
|
|
8
|
+
? str + ' ' + attrib + '-opacity="' + alpha.toFixed(2).slice(1) + '"'
|
|
9
|
+
: str
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
function svgCmd (cmd, x, y) {
|
|
13
|
+
let str = cmd + x
|
|
14
|
+
if (typeof y !== 'undefined') str += ' ' + y
|
|
15
|
+
|
|
16
|
+
return str
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function qrToPath (data, size, margin) {
|
|
20
|
+
let path = ''
|
|
21
|
+
let moveBy = 0
|
|
22
|
+
let newRow = false
|
|
23
|
+
let lineLength = 0
|
|
24
|
+
|
|
25
|
+
for (let i = 0; i < data.length; i++) {
|
|
26
|
+
const col = Math.floor(i % size)
|
|
27
|
+
const row = Math.floor(i / size)
|
|
28
|
+
|
|
29
|
+
if (!col && !newRow) newRow = true
|
|
30
|
+
|
|
31
|
+
if (data[i]) {
|
|
32
|
+
lineLength++
|
|
33
|
+
|
|
34
|
+
if (!(i > 0 && col > 0 && data[i - 1])) {
|
|
35
|
+
path += newRow
|
|
36
|
+
? svgCmd('M', col + margin, 0.5 + row + margin)
|
|
37
|
+
: svgCmd('m', moveBy, 0)
|
|
38
|
+
|
|
39
|
+
moveBy = 0
|
|
40
|
+
newRow = false
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
if (!(col + 1 < size && data[i + 1])) {
|
|
44
|
+
path += svgCmd('h', lineLength)
|
|
45
|
+
lineLength = 0
|
|
46
|
+
}
|
|
47
|
+
} else {
|
|
48
|
+
moveBy++
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
return path
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
exports.render = function render (qrData, options, cb) {
|
|
56
|
+
const opts = Utils.getOptions(options)
|
|
57
|
+
const size = qrData.modules.size
|
|
58
|
+
const data = qrData.modules.data
|
|
59
|
+
const qrcodesize = size + opts.margin * 2
|
|
60
|
+
|
|
61
|
+
const bg = !opts.color.light.a
|
|
62
|
+
? ''
|
|
63
|
+
: '<path ' + getColorAttrib(opts.color.light, 'fill') +
|
|
64
|
+
' d="M0 0h' + qrcodesize + 'v' + qrcodesize + 'H0z"/>'
|
|
65
|
+
|
|
66
|
+
const path =
|
|
67
|
+
'<path ' + getColorAttrib(opts.color.dark, 'stroke') +
|
|
68
|
+
' d="' + qrToPath(data, size, opts.margin) + '"/>'
|
|
69
|
+
|
|
70
|
+
const viewBox = 'viewBox="' + '0 0 ' + qrcodesize + ' ' + qrcodesize + '"'
|
|
71
|
+
|
|
72
|
+
const width = !opts.width ? '' : 'width="' + opts.width + '" height="' + opts.width + '" '
|
|
73
|
+
|
|
74
|
+
const svgTag = '<svg xmlns="http://www.w3.org/2000/svg" ' + width + viewBox + ' shape-rendering="crispEdges">' + bg + path + '</svg>\n'
|
|
75
|
+
|
|
76
|
+
if (typeof cb === 'function') {
|
|
77
|
+
cb(null, svgTag)
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
return svgTag
|
|
81
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
const svgTagRenderer = require('./svg-tag')
|
|
2
|
+
|
|
3
|
+
exports.render = svgTagRenderer.render
|
|
4
|
+
|
|
5
|
+
exports.renderToFile = function renderToFile (path, qrData, options, cb) {
|
|
6
|
+
if (typeof cb === 'undefined') {
|
|
7
|
+
cb = options
|
|
8
|
+
options = undefined
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
const fs = require('fs')
|
|
12
|
+
const svgTag = exports.render(qrData, options)
|
|
13
|
+
|
|
14
|
+
const xmlStr = '<?xml version="1.0" encoding="utf-8"?>' +
|
|
15
|
+
'<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">' +
|
|
16
|
+
svgTag
|
|
17
|
+
|
|
18
|
+
fs.writeFile(path, xmlStr, cb)
|
|
19
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
const backgroundWhite = '\x1b[47m'
|
|
2
|
+
const backgroundBlack = '\x1b[40m'
|
|
3
|
+
const foregroundWhite = '\x1b[37m'
|
|
4
|
+
const foregroundBlack = '\x1b[30m'
|
|
5
|
+
const reset = '\x1b[0m'
|
|
6
|
+
const lineSetupNormal = backgroundWhite + foregroundBlack // setup colors
|
|
7
|
+
const lineSetupInverse = backgroundBlack + foregroundWhite // setup colors
|
|
8
|
+
|
|
9
|
+
const createPalette = function (lineSetup, foregroundWhite, foregroundBlack) {
|
|
10
|
+
return {
|
|
11
|
+
// 1 ... white, 2 ... black, 0 ... transparent (default)
|
|
12
|
+
|
|
13
|
+
'00': reset + ' ' + lineSetup,
|
|
14
|
+
'01': reset + foregroundWhite + '▄' + lineSetup,
|
|
15
|
+
'02': reset + foregroundBlack + '▄' + lineSetup,
|
|
16
|
+
10: reset + foregroundWhite + '▀' + lineSetup,
|
|
17
|
+
11: ' ',
|
|
18
|
+
12: '▄',
|
|
19
|
+
20: reset + foregroundBlack + '▀' + lineSetup,
|
|
20
|
+
21: '▀',
|
|
21
|
+
22: '█'
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Returns code for QR pixel
|
|
27
|
+
* @param {boolean[][]} modules
|
|
28
|
+
* @param {number} size
|
|
29
|
+
* @param {number} x
|
|
30
|
+
* @param {number} y
|
|
31
|
+
* @return {'0' | '1' | '2'}
|
|
32
|
+
*/
|
|
33
|
+
const mkCodePixel = function (modules, size, x, y) {
|
|
34
|
+
const sizePlus = size + 1
|
|
35
|
+
if ((x >= sizePlus) || (y >= sizePlus) || (y < -1) || (x < -1)) return '0'
|
|
36
|
+
if ((x >= size) || (y >= size) || (y < 0) || (x < 0)) return '1'
|
|
37
|
+
const idx = (y * size) + x
|
|
38
|
+
return modules[idx] ? '2' : '1'
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Returns code for four QR pixels. Suitable as key in palette.
|
|
43
|
+
* @param {boolean[][]} modules
|
|
44
|
+
* @param {number} size
|
|
45
|
+
* @param {number} x
|
|
46
|
+
* @param {number} y
|
|
47
|
+
* @return {keyof palette}
|
|
48
|
+
*/
|
|
49
|
+
const mkCode = function (modules, size, x, y) {
|
|
50
|
+
return (
|
|
51
|
+
mkCodePixel(modules, size, x, y) +
|
|
52
|
+
mkCodePixel(modules, size, x, y + 1)
|
|
53
|
+
)
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
exports.render = function (qrData, options, cb) {
|
|
57
|
+
const size = qrData.modules.size
|
|
58
|
+
const data = qrData.modules.data
|
|
59
|
+
|
|
60
|
+
const inverse = !!(options && options.inverse)
|
|
61
|
+
const lineSetup = options && options.inverse ? lineSetupInverse : lineSetupNormal
|
|
62
|
+
const white = inverse ? foregroundBlack : foregroundWhite
|
|
63
|
+
const black = inverse ? foregroundWhite : foregroundBlack
|
|
64
|
+
|
|
65
|
+
const palette = createPalette(lineSetup, white, black)
|
|
66
|
+
const newLine = reset + '\n' + lineSetup
|
|
67
|
+
|
|
68
|
+
let output = lineSetup // setup colors
|
|
69
|
+
|
|
70
|
+
for (let y = -1; y < size + 1; y += 2) {
|
|
71
|
+
for (let x = -1; x < size; x++) {
|
|
72
|
+
output += palette[mkCode(data, size, x, y)]
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
output += palette[mkCode(data, size, size, y)] + newLine
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
output += reset
|
|
79
|
+
|
|
80
|
+
if (typeof cb === 'function') {
|
|
81
|
+
cb(null, output)
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
return output
|
|
85
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
// let Utils = require('./utils')
|
|
2
|
+
|
|
3
|
+
exports.render = function (qrData, options, cb) {
|
|
4
|
+
const size = qrData.modules.size
|
|
5
|
+
const data = qrData.modules.data
|
|
6
|
+
|
|
7
|
+
// let opts = Utils.getOptions(options)
|
|
8
|
+
|
|
9
|
+
// use same scheme as https://github.com/gtanner/qrcode-terminal because it actually works! =)
|
|
10
|
+
const black = '\x1b[40m \x1b[0m'
|
|
11
|
+
const white = '\x1b[47m \x1b[0m'
|
|
12
|
+
|
|
13
|
+
let output = ''
|
|
14
|
+
const hMargin = Array(size + 3).join(white)
|
|
15
|
+
const vMargin = Array(2).join(white)
|
|
16
|
+
|
|
17
|
+
output += hMargin + '\n'
|
|
18
|
+
for (let i = 0; i < size; ++i) {
|
|
19
|
+
output += white
|
|
20
|
+
for (let j = 0; j < size; j++) {
|
|
21
|
+
// let topModule = data[i * size + j]
|
|
22
|
+
// let bottomModule = data[(i + 1) * size + j]
|
|
23
|
+
|
|
24
|
+
output += data[i * size + j] ? black : white// getBlockChar(topModule, bottomModule)
|
|
25
|
+
}
|
|
26
|
+
// output += white+'\n'
|
|
27
|
+
output += vMargin + '\n'
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
output += hMargin + '\n'
|
|
31
|
+
|
|
32
|
+
if (typeof cb === 'function') {
|
|
33
|
+
cb(null, output)
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
return output
|
|
37
|
+
}
|
|
38
|
+
/*
|
|
39
|
+
exports.renderToFile = function renderToFile (path, qrData, options, cb) {
|
|
40
|
+
if (typeof cb === 'undefined') {
|
|
41
|
+
cb = options
|
|
42
|
+
options = undefined
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
let fs = require('fs')
|
|
46
|
+
let utf8 = exports.render(qrData, options)
|
|
47
|
+
fs.writeFile(path, utf8, cb)
|
|
48
|
+
}
|
|
49
|
+
*/
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
const big = require('./terminal/terminal')
|
|
2
|
+
const small = require('./terminal/terminal-small')
|
|
3
|
+
|
|
4
|
+
exports.render = function (qrData, options, cb) {
|
|
5
|
+
if (options && options.small) {
|
|
6
|
+
return small.render(qrData, options, cb)
|
|
7
|
+
}
|
|
8
|
+
return big.render(qrData, options, cb)
|
|
9
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
const Utils = require('./utils')
|
|
2
|
+
|
|
3
|
+
const BLOCK_CHAR = {
|
|
4
|
+
WW: ' ',
|
|
5
|
+
WB: '▄',
|
|
6
|
+
BB: '█',
|
|
7
|
+
BW: '▀'
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const INVERTED_BLOCK_CHAR = {
|
|
11
|
+
BB: ' ',
|
|
12
|
+
BW: '▄',
|
|
13
|
+
WW: '█',
|
|
14
|
+
WB: '▀'
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function getBlockChar (top, bottom, blocks) {
|
|
18
|
+
if (top && bottom) return blocks.BB
|
|
19
|
+
if (top && !bottom) return blocks.BW
|
|
20
|
+
if (!top && bottom) return blocks.WB
|
|
21
|
+
return blocks.WW
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
exports.render = function (qrData, options, cb) {
|
|
25
|
+
const opts = Utils.getOptions(options)
|
|
26
|
+
let blocks = BLOCK_CHAR
|
|
27
|
+
if (opts.color.dark.hex === '#ffffff' || opts.color.light.hex === '#000000') {
|
|
28
|
+
blocks = INVERTED_BLOCK_CHAR
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
const size = qrData.modules.size
|
|
32
|
+
const data = qrData.modules.data
|
|
33
|
+
|
|
34
|
+
let output = ''
|
|
35
|
+
let hMargin = Array(size + (opts.margin * 2) + 1).join(blocks.WW)
|
|
36
|
+
hMargin = Array((opts.margin / 2) + 1).join(hMargin + '\n')
|
|
37
|
+
|
|
38
|
+
const vMargin = Array(opts.margin + 1).join(blocks.WW)
|
|
39
|
+
|
|
40
|
+
output += hMargin
|
|
41
|
+
for (let i = 0; i < size; i += 2) {
|
|
42
|
+
output += vMargin
|
|
43
|
+
for (let j = 0; j < size; j++) {
|
|
44
|
+
const topModule = data[i * size + j]
|
|
45
|
+
const bottomModule = data[(i + 1) * size + j]
|
|
46
|
+
|
|
47
|
+
output += getBlockChar(topModule, bottomModule, blocks)
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
output += vMargin + '\n'
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
output += hMargin.slice(0, -1)
|
|
54
|
+
|
|
55
|
+
if (typeof cb === 'function') {
|
|
56
|
+
cb(null, output)
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
return output
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
exports.renderToFile = function renderToFile (path, qrData, options, cb) {
|
|
63
|
+
if (typeof cb === 'undefined') {
|
|
64
|
+
cb = options
|
|
65
|
+
options = undefined
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
const fs = require('fs')
|
|
69
|
+
const utf8 = exports.render(qrData, options)
|
|
70
|
+
fs.writeFile(path, utf8, cb)
|
|
71
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
function hex2rgba (hex) {
|
|
2
|
+
if (typeof hex === 'number') {
|
|
3
|
+
hex = hex.toString()
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
if (typeof hex !== 'string') {
|
|
7
|
+
throw new Error('Color should be defined as hex string')
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
let hexCode = hex.slice().replace('#', '').split('')
|
|
11
|
+
if (hexCode.length < 3 || hexCode.length === 5 || hexCode.length > 8) {
|
|
12
|
+
throw new Error('Invalid hex color: ' + hex)
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
// Convert from short to long form (fff -> ffffff)
|
|
16
|
+
if (hexCode.length === 3 || hexCode.length === 4) {
|
|
17
|
+
hexCode = Array.prototype.concat.apply([], hexCode.map(function (c) {
|
|
18
|
+
return [c, c]
|
|
19
|
+
}))
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// Add default alpha value
|
|
23
|
+
if (hexCode.length === 6) hexCode.push('F', 'F')
|
|
24
|
+
|
|
25
|
+
const hexValue = parseInt(hexCode.join(''), 16)
|
|
26
|
+
|
|
27
|
+
return {
|
|
28
|
+
r: (hexValue >> 24) & 255,
|
|
29
|
+
g: (hexValue >> 16) & 255,
|
|
30
|
+
b: (hexValue >> 8) & 255,
|
|
31
|
+
a: hexValue & 255,
|
|
32
|
+
hex: '#' + hexCode.slice(0, 6).join('')
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
exports.getOptions = function getOptions (options) {
|
|
37
|
+
if (!options) options = {}
|
|
38
|
+
if (!options.color) options.color = {}
|
|
39
|
+
|
|
40
|
+
const margin = typeof options.margin === 'undefined' ||
|
|
41
|
+
options.margin === null ||
|
|
42
|
+
options.margin < 0
|
|
43
|
+
? 4
|
|
44
|
+
: options.margin
|
|
45
|
+
|
|
46
|
+
const width = options.width && options.width >= 21 ? options.width : undefined
|
|
47
|
+
const scale = options.scale || 4
|
|
48
|
+
|
|
49
|
+
return {
|
|
50
|
+
width: width,
|
|
51
|
+
scale: width ? 4 : scale,
|
|
52
|
+
margin: margin,
|
|
53
|
+
color: {
|
|
54
|
+
dark: hex2rgba(options.color.dark || '#000000ff'),
|
|
55
|
+
light: hex2rgba(options.color.light || '#ffffffff')
|
|
56
|
+
},
|
|
57
|
+
type: options.type,
|
|
58
|
+
rendererOpts: options.rendererOpts || {}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
exports.getScale = function getScale (qrSize, opts) {
|
|
63
|
+
return opts.width && opts.width >= qrSize + opts.margin * 2
|
|
64
|
+
? opts.width / (qrSize + opts.margin * 2)
|
|
65
|
+
: opts.scale
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
exports.getImageWidth = function getImageWidth (qrSize, opts) {
|
|
69
|
+
const scale = exports.getScale(qrSize, opts)
|
|
70
|
+
return Math.floor((qrSize + opts.margin * 2) * scale)
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
exports.qrToImageData = function qrToImageData (imgData, qr, opts) {
|
|
74
|
+
const size = qr.modules.size
|
|
75
|
+
const data = qr.modules.data
|
|
76
|
+
const scale = exports.getScale(size, opts)
|
|
77
|
+
const symbolSize = Math.floor((size + opts.margin * 2) * scale)
|
|
78
|
+
const scaledMargin = opts.margin * scale
|
|
79
|
+
const palette = [opts.color.light, opts.color.dark]
|
|
80
|
+
|
|
81
|
+
for (let i = 0; i < symbolSize; i++) {
|
|
82
|
+
for (let j = 0; j < symbolSize; j++) {
|
|
83
|
+
let posDst = (i * symbolSize + j) * 4
|
|
84
|
+
let pxColor = opts.color.light
|
|
85
|
+
|
|
86
|
+
if (i >= scaledMargin && j >= scaledMargin &&
|
|
87
|
+
i < symbolSize - scaledMargin && j < symbolSize - scaledMargin) {
|
|
88
|
+
const iSrc = Math.floor((i - scaledMargin) / scale)
|
|
89
|
+
const jSrc = Math.floor((j - scaledMargin) / scale)
|
|
90
|
+
pxColor = palette[data[iSrc * size + jSrc] ? 1 : 0]
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
imgData[posDst++] = pxColor.r
|
|
94
|
+
imgData[posDst++] = pxColor.g
|
|
95
|
+
imgData[posDst++] = pxColor.b
|
|
96
|
+
imgData[posDst] = pxColor.a
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
package/lib/server.js
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
const canPromise = require('./can-promise')
|
|
2
|
+
const QRCode = require('./core/qrcode')
|
|
3
|
+
const PngRenderer = require('./renderer/png')
|
|
4
|
+
const Utf8Renderer = require('./renderer/utf8')
|
|
5
|
+
const TerminalRenderer = require('./renderer/terminal')
|
|
6
|
+
const SvgRenderer = require('./renderer/svg')
|
|
7
|
+
|
|
8
|
+
function checkParams (text, opts, cb) {
|
|
9
|
+
if (typeof text === 'undefined') {
|
|
10
|
+
throw new Error('String required as first argument')
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
if (typeof cb === 'undefined') {
|
|
14
|
+
cb = opts
|
|
15
|
+
opts = {}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
if (typeof cb !== 'function') {
|
|
19
|
+
if (!canPromise()) {
|
|
20
|
+
throw new Error('Callback required as last argument')
|
|
21
|
+
} else {
|
|
22
|
+
opts = cb || {}
|
|
23
|
+
cb = null
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
return {
|
|
28
|
+
opts: opts,
|
|
29
|
+
cb: cb
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
function getTypeFromFilename (path) {
|
|
34
|
+
return path.slice((path.lastIndexOf('.') - 1 >>> 0) + 2).toLowerCase()
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function getRendererFromType (type) {
|
|
38
|
+
switch (type) {
|
|
39
|
+
case 'svg':
|
|
40
|
+
return SvgRenderer
|
|
41
|
+
|
|
42
|
+
case 'txt':
|
|
43
|
+
case 'utf8':
|
|
44
|
+
return Utf8Renderer
|
|
45
|
+
|
|
46
|
+
case 'png':
|
|
47
|
+
case 'image/png':
|
|
48
|
+
default:
|
|
49
|
+
return PngRenderer
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
function getStringRendererFromType (type) {
|
|
54
|
+
switch (type) {
|
|
55
|
+
case 'svg':
|
|
56
|
+
return SvgRenderer
|
|
57
|
+
|
|
58
|
+
case 'terminal':
|
|
59
|
+
return TerminalRenderer
|
|
60
|
+
|
|
61
|
+
case 'utf8':
|
|
62
|
+
default:
|
|
63
|
+
return Utf8Renderer
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
function render (renderFunc, text, params) {
|
|
68
|
+
if (!params.cb) {
|
|
69
|
+
return new Promise(function (resolve, reject) {
|
|
70
|
+
try {
|
|
71
|
+
const data = QRCode.create(text, params.opts)
|
|
72
|
+
return renderFunc(data, params.opts, function (err, data) {
|
|
73
|
+
return err ? reject(err) : resolve(data)
|
|
74
|
+
})
|
|
75
|
+
} catch (e) {
|
|
76
|
+
reject(e)
|
|
77
|
+
}
|
|
78
|
+
})
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
try {
|
|
82
|
+
const data = QRCode.create(text, params.opts)
|
|
83
|
+
return renderFunc(data, params.opts, params.cb)
|
|
84
|
+
} catch (e) {
|
|
85
|
+
params.cb(e)
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
exports.create = QRCode.create
|
|
90
|
+
|
|
91
|
+
exports.toCanvas = require('./browser').toCanvas
|
|
92
|
+
|
|
93
|
+
exports.toString = function toString (text, opts, cb) {
|
|
94
|
+
const params = checkParams(text, opts, cb)
|
|
95
|
+
const type = params.opts ? params.opts.type : undefined
|
|
96
|
+
const renderer = getStringRendererFromType(type)
|
|
97
|
+
return render(renderer.render, text, params)
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
exports.toDataURL = function toDataURL (text, opts, cb) {
|
|
101
|
+
const params = checkParams(text, opts, cb)
|
|
102
|
+
const renderer = getRendererFromType(params.opts.type)
|
|
103
|
+
return render(renderer.renderToDataURL, text, params)
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
exports.toBuffer = function toBuffer (text, opts, cb) {
|
|
107
|
+
const params = checkParams(text, opts, cb)
|
|
108
|
+
const renderer = getRendererFromType(params.opts.type)
|
|
109
|
+
return render(renderer.renderToBuffer, text, params)
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
exports.toFile = function toFile (path, text, opts, cb) {
|
|
113
|
+
if (typeof path !== 'string' || !(typeof text === 'string' || typeof text === 'object')) {
|
|
114
|
+
throw new Error('Invalid argument')
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
if ((arguments.length < 3) && !canPromise()) {
|
|
118
|
+
throw new Error('Too few arguments provided')
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
const params = checkParams(text, opts, cb)
|
|
122
|
+
const type = params.opts.type || getTypeFromFilename(path)
|
|
123
|
+
const renderer = getRendererFromType(type)
|
|
124
|
+
const renderToFile = renderer.renderToFile.bind(null, path)
|
|
125
|
+
|
|
126
|
+
return render(renderToFile, text, params)
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
exports.toFileStream = function toFileStream (stream, text, opts) {
|
|
130
|
+
if (arguments.length < 2) {
|
|
131
|
+
throw new Error('Too few arguments provided')
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
const params = checkParams(text, opts, stream.emit.bind(stream, 'error'))
|
|
135
|
+
const renderer = getRendererFromType('png') // Only png support for now
|
|
136
|
+
const renderToFileStream = renderer.renderToFileStream.bind(null, stream)
|
|
137
|
+
render(renderToFileStream, text, params)
|
|
138
|
+
}
|
package/license
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2012 Ryan Day
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
10
|
+
|