Added kinemaster
This commit is contained in:
parent
3f1b36670b
commit
d1036eb369
2 changed files with 17 additions and 0 deletions
BIN
assets/images/kinemaster.png
Normal file
BIN
assets/images/kinemaster.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
17
commands/image-editing/kinemaster.js
Normal file
17
commands/image-editing/kinemaster.js
Normal file
|
@ -0,0 +1,17 @@
|
|||
const ImageCommand = require("../../classes/imageCommand.js");
|
||||
|
||||
class KineMasterCommand extends ImageCommand {
|
||||
params = {
|
||||
water: "./assets/images/kinemaster.png",
|
||||
gravity: 3,
|
||||
resize: true
|
||||
};
|
||||
|
||||
static description = "Adds the KineMaster watermark to an image";
|
||||
static aliases = ["kine"];
|
||||
|
||||
static noImage = "you need to provide an image to add a KineMaster watermark!";
|
||||
static command = "watermark";
|
||||
}
|
||||
|
||||
module.exports = KineMasterCommand;
|
Loading…
Reference in a new issue