&togif command (libvips version) (#286)

* &togif command

* use libvips not magick

* include libvips build dir in gitignore
This commit is contained in:
bjcscat 2022-06-25 12:40:52 -05:00 committed by GitHub
parent 3f2de3a168
commit 5072c6ea10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 76 additions and 1 deletions

View 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;