2019-09-13 20:02:41 +00:00
|
|
|
const jsqr = require("jsqr");
|
|
|
|
const sharp = require("sharp");
|
|
|
|
|
|
|
|
exports.run = async (message) => {
|
|
|
|
const image = await require("../utils/imagedetect.js")(message);
|
2019-12-02 20:47:22 +00:00
|
|
|
if (image === undefined) return `${message.author.mention}, you need to provide an image with a QR code to read!`;
|
2019-09-13 20:02:41 +00:00
|
|
|
message.channel.sendTyping();
|
2020-07-12 15:14:39 +00:00
|
|
|
const rawData = await sharp(image.path).ensureAlpha().raw().toBuffer({ resolveWithObject: true });
|
2019-09-13 20:02:41 +00:00
|
|
|
const qrBuffer = jsqr(rawData.data, rawData.info.width, rawData.info.height);
|
2019-12-16 18:13:38 +00:00
|
|
|
if (!qrBuffer) return `${message.author.mention}, I couldn't find a QR code!`;
|
2019-09-13 20:02:41 +00:00
|
|
|
return `\`\`\`\n${qrBuffer.data}\n\`\`\``;
|
2019-12-02 20:47:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.category = 1;
|
|
|
|
exports.help = "Reads a QR code";
|