GIF frame expander - split an animated GIF image into a series of static JPG images.
You must have the GraphicsMagick library installed before installing gifpander
.
brew install graphicsmagick
git clone [email protected]:micmath/gifpander.git
cd gifpander
npm install -g
Run the tool from your command line.
gifpander path/to/myimage.gif
Look in the output directory to get the separated images, representing each frame of the animated GIF.
Optional. Specify the desired compression/quality of the generated JPG files. Acceptable arguments are any number between 1 and 100. Defaults to 50
.
gifpander ./fixtures/animated-a.gif --quality=10
Optional. Specify the desired directory to save the generated image files into. Defaults to ./out
.
gifpander ./fixtures/animated-a.gif --out=/tmp/images