21 lines
No EOL
1 KiB
JavaScript
21 lines
No EOL
1 KiB
JavaScript
const gm = require("gm").subClass({
|
|
imageMagick: true
|
|
});
|
|
const gmToBuffer = require("../utils/gmbuffer.js");
|
|
|
|
exports.run = async (message) => {
|
|
message.channel.sendTyping();
|
|
const image = await require("../utils/imagedetect.js")(message);
|
|
if (image === undefined) return `${message.author.mention}, you need to provide an image to make a Scott the Woz TV meme!`;
|
|
const template = "./assets/images/scott.png";
|
|
const command = gm(template).out("null:").out("(").out(image.path).coalesce().out("-virtual-pixel", "transparent").resize("415x234!").out("+distort", "Perspective", "0,0 129,187 415,0 517,182 415,234 517,465 0,234 132,418").out(")").compose("over").gravity("Center").geometry("-238-98").out("-layers", "composite");
|
|
const buffer = await gmToBuffer(command, image.outputType);
|
|
return message.channel.createMessage("", {
|
|
file: buffer,
|
|
name: `scott.${image.outputType}`
|
|
});
|
|
};
|
|
|
|
exports.aliases = ["woz", "tv", "porn"];
|
|
exports.category = 5;
|
|
exports.help = "Creates a Scott the Woz TV image"; |