qr_image/index.js

185 wiersze
5.1 KiB
JavaScript
Czysty Zwykły widok Historia

2022-01-23 03:22:52 +00:00
// Upload image to canvas
var imageLoader = document.getElementById("imageLoader");
imageLoader.addEventListener("change", handleImage, false);
var uploadCanvas = document.getElementById("imageCanvas");
var uploadContext = uploadCanvas.getContext("2d");
img = false;
var canvas = false;
function handleImage(e) {
var reader = new FileReader();
reader.onload = function (event) {
img = new Image();
img.onload = function () {
uploadCanvas.width = img.width;
uploadCanvas.height = img.height;
uploadContext.drawImage(img, 0, 0);
};
img.src = event.target.result;
};
reader.readAsDataURL(e.target.files[0]);
}
var qrcode = new QRCode("qrcode", {
2022-01-22 19:05:38 +00:00
width: 256,
height: 256,
colorDark: "#000000",
colorLight: "#ffffff",
2022-01-23 03:22:52 +00:00
correctLevel: QRCode.CorrectLevel.L,
});
2022-01-23 03:22:52 +00:00
var sizeSlider = document.getElementById("radiusSize");
var sizeOutput = document.getElementById("printSize");
sizeOutput.innerHTML = sizeSlider.value; // Display the default slider value
var radiusRatio = sizeSlider.value/200;
// Update the current slider value (each time you drag the slider handle)
sizeSlider.oninput = function () {
sizeOutput.innerHTML = this.value;
radiusRatio = this.value/200;
};
var correctionSlider = document.getElementById("errorCorrection");
var correctionOutput = document.getElementById("printCorrection");
correctionOutput.innerHTML = correctionSlider.value; // Display the default slider value
var correctionLevel = correctionSlider.value;
if (correctionLevel === '1') {
qrcode._htOption.correctLevel = QRCode.CorrectLevel.L;
} else if (correctionLevel === '2') {
qrcode._htOption.correctLevel = QRCode.CorrectLevel.M;
} else if (correctionLevel === '3') {
qrcode._htOption.correctLevel = QRCode.CorrectLevel.H;
}
// Update the current slider value (each time you drag the slider handle)
correctionSlider.oninput = function () {
correctionOutput.innerHTML = this.value;
correctionLevel = correctionSlider.value;
if (correctionLevel === '1') {
qrcode._htOption.correctLevel = QRCode.CorrectLevel.L;
} else if (correctionLevel === '2') {
qrcode._htOption.correctLevel = QRCode.CorrectLevel.M;
} else if (correctionLevel === '3') {
qrcode._htOption.correctLevel = QRCode.CorrectLevel.H;
}
};
2022-01-22 19:05:38 +00:00
/**
* Check whether bit at current position should be full sized.
*
* @param {i} The current bit's row.
* @param {j} The current bit's column.
* @param {QRLength} The length of the QR code.
* @return {isPosition} Whether or not the current bit is safe to modify.
*/
function isSafeBit(i, j, QRLength) {
// Currently hard coding position bits
if (i < 8 && j < 8) {
return false;
} else if (i > QRLength - 9 && j < 8) {
return false;
} else if (i < 8 && j > QRLength - 9) {
return false;
2022-01-23 03:22:52 +00:00
}
2022-01-22 19:05:38 +00:00
return true;
}
/**
* Draw basic shape representing each bit of the QR code.
*
* @param {ctx} Context of associated canvas.
* @param {i} The current bit's row.
* @param {j} The current bit's column.
* @param {bitLength} The maximum length of each bit.
* @param {radiusRatio} The radius should be this ratio times the bitLength.
* The ratio should be between 0 and 0.5.
* @param {QRLength} The length of the QR code.
*/
function drawShape(ctx, i, j, bitLength, radiusRatio, QRLength) {
// Draw centered
xCenter = bitLength * (i + 0.5);
yCenter = bitLength * (j + 0.5);
if (!isSafeBit(i, j, QRLength)) {
radiusRatio = 0.5;
}
radius = bitLength * radiusRatio;
ctx.fillRect(xCenter - radius, yCenter - radius, 2 * radius, 2 * radius);
}
2022-01-23 03:22:52 +00:00
function download() {
// Download image
if (!canvas) {
alert("Error: no QR code to download");
return;
}
var link = document.getElementById('link');
link.setAttribute('download', 'qr_image.png');
link.setAttribute('href', canvas.toDataURL("image/png").replace("image/png", "image/octet-stream"));
link.click();
}
2022-01-22 19:05:38 +00:00
function makeCode() {
// Grab url input
elementText = document.getElementById("text");
2022-01-22 19:05:38 +00:00
url = elementText.value;
// Check for non-empty url
if (!url) {
alert("Error: empty input");
elementText.focus();
return;
}
// Pad URL since we want more density
2022-01-22 19:05:38 +00:00
maxLength = 40;
if (url.length < maxLength) {
2022-01-22 19:05:38 +00:00
url += "?/" + "0".repeat(maxLength - url.length);
2022-01-23 03:22:52 +00:00
}
2022-01-22 19:05:38 +00:00
// Generate URL bits
qrcode.makeCode(url);
// Manually draw canvas
QRMatrix = qrcode._oQRCode.modules;
2022-01-22 19:05:38 +00:00
QRLength = QRMatrix.length;
// Form canvas
canvas = document.getElementById("myCanvas");
ctx = canvas.getContext("2d");
2022-01-22 19:05:38 +00:00
// QR code sizing
bitLength = 10;
canvasLength = bitLength * QRLength;
canvas.width = canvasLength;
canvas.height = canvasLength;
2022-01-22 19:05:38 +00:00
// Set background of canvas
2022-01-23 03:22:52 +00:00
ctx.fillStyle = "#FFFFFF";
ctx.fillRect(0, 0, canvasLength, canvasLength);
2022-01-23 03:22:52 +00:00
if (img) {
ctx.drawImage(img, 0, 0, canvasLength, canvasLength);
}
2022-01-22 19:05:38 +00:00
// Colors of true and false bits
black = "#000000";
2022-01-22 19:05:38 +00:00
white = "#FFFFFF";
2022-01-22 19:05:38 +00:00
// Populate canvas with bits
for (let i = 0; i < QRLength; i++) {
for (let j = 0; j < QRLength; j++) {
if (QRMatrix[i][j]) {
ctx.fillStyle = black;
} else {
ctx.fillStyle = white;
}
2022-01-23 03:22:52 +00:00
drawShape(ctx, i, j, bitLength, radiusRatio, QRLength);
}
}
}