26 lines
No EOL
1.2 KiB
JavaScript
26 lines
No EOL
1.2 KiB
JavaScript
const gm = require("gm").subClass({
|
|
imageMagick: true
|
|
});
|
|
const gmToBuffer = require("../utils/gmbuffer.js");
|
|
const wrap = require("../utils/wrap.js");
|
|
|
|
exports.run = async (message, args) => {
|
|
if (args.length === 0) return `${message.author.mention}, you need to provide some text to make a Sonic meme!`;
|
|
message.channel.sendTyping();
|
|
const template = "./assets/images/sonic.jpg";
|
|
const file = `/tmp/${Math.random().toString(36).substring(2, 15)}.png`;
|
|
const cleanedMessage = args.join(" ").replace(/&/g, "\\&").replace(/>/g, "\\>").replace(/</g, "\\<").replace(/"/g, "\\"").replace(/'/g, "\\'");
|
|
gm(474, 332).out("+size").background("none").gravity("Center").out("-pointsize", 72).out("-font", "Bitstream Vera Sans").out(`pango:<span foreground="white">${wrap(cleanedMessage, {width: 15, indent: ""})}</span>`).write(file, async (error) => {
|
|
if (error) throw error;
|
|
const command = gm(template).composite(file).gravity("Center").geometry("474x332+160+10");
|
|
const resultBuffer = await gmToBuffer(command, "png");
|
|
return message.channel.createMessage("", {
|
|
file: resultBuffer,
|
|
name: "sonic.png"
|
|
});
|
|
});
|
|
};
|
|
|
|
exports.category = 4;
|
|
exports.help = "Creates a Sonic speech bubble image";
|
|
exports.params = "[text]"; |