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

11 lines
323 B
JavaScript

const ImageCommand = require("../../classes/imageCommand.js");
class PixelateCommand extends ImageCommand {
static description = "Pixelates an image";
static aliases = ["pixel", "small"];
static noImage = "You need to provide an image to pixelate!";
static command = "resize";
}
module.exports = PixelateCommand;