&togif command (libvips version) (#286)
* &togif command * use libvips not magick * include libvips build dir in gitignore
This commit is contained in:
parent
3f2de3a168
commit
5072c6ea10
5 changed files with 76 additions and 1 deletions
11
commands/image-editing/togif.js
Normal file
11
commands/image-editing/togif.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
import ImageCommand from "../../classes/imageCommand.js";
|
||||
|
||||
class ToGIFCommand extends ImageCommand {
|
||||
static description = "Turns an image into a gif";
|
||||
static aliases = ["tgif", "gifify"];
|
||||
|
||||
static noImage = "You need to provide an image to turn into a GIF!";
|
||||
static command = "togif";
|
||||
}
|
||||
|
||||
export default ToGIFCommand;
|
Loading…
Add table
Add a link
Reference in a new issue