52 lines
1.6 KiB
JavaScript
52 lines
1.6 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
const cleaner = require("../shared/cleaner.cjs");
|
|
const qrCode = require("../shared/qr-code.cjs");
|
|
const validator = require("../shared/validator.cjs");
|
|
const utils = require("../shared/utils.cjs");
|
|
class SwissQRCode {
|
|
/**
|
|
* Creates a Swiss QR Code.
|
|
*
|
|
* @param data The data to be encoded in the QR code.
|
|
* @param size The size of the QR code in mm.
|
|
* @throws { ValidationError } Throws an error if the data is invalid.
|
|
*/
|
|
constructor(data, size = 46) {
|
|
this.size = utils.mm2pt(size);
|
|
this.data = cleaner.cleanData(data);
|
|
validator.validateData(this.data);
|
|
}
|
|
/**
|
|
* Attaches the Swiss QR Code to a PDF document.
|
|
*
|
|
* @param doc The PDF document to attach the Swiss QR Code to.
|
|
* @param x The horizontal position in points where the Swiss QR Code will be placed.
|
|
* @param y The vertical position in points where the Swiss QR Code will be placed.
|
|
*/
|
|
attachTo(doc, x = ((_a) => (_a = doc.x) != null ? _a : 0)(), y = ((_b) => (_b = doc.y) != null ? _b : 0)()) {
|
|
doc.save();
|
|
doc.translate(x, y);
|
|
qrCode.renderQRCode(this.data, this.size, (xPos, yPos, blockSize) => {
|
|
doc.rect(
|
|
xPos,
|
|
yPos,
|
|
blockSize,
|
|
blockSize
|
|
);
|
|
});
|
|
doc.fillColor("black");
|
|
doc.fill();
|
|
qrCode.renderSwissCross(this.size, (xPos, yPos, width, height, fillColor) => {
|
|
doc.rect(
|
|
xPos,
|
|
yPos,
|
|
width,
|
|
height
|
|
).fillColor(fillColor).fill();
|
|
});
|
|
doc.restore();
|
|
}
|
|
}
|
|
exports.SwissQRCode = SwissQRCode;
|