mrmBot-Matrix/commands/image-editing/wide.js

15 lines
364 B
JavaScript

const ImageCommand = require("../../classes/imageCommand.js");
class WideCommand extends ImageCommand {
params = {
wide: true
};
static description = "Stretches an image to 19x its width";
static aliases = ["w19", "wide19"];
static noImage = "You need to provide an image to stretch!";
static command = "resize";
}
module.exports = WideCommand;