I have over 200 sprite sheet .png files that I want to convert to animated .gif files (then if possible change extension to .png, not format)
Windows 8.1 and ImageMagick-6.9.2-10-Q16-x64
here is an example https://dl.dropboxusercontent.com/u/609 ... xample.png
this works for one file
Code: Select all
convert -dispose 3 -delay 4 -loop 0 *.png -crop 80x80 +repage result.giffor all the files I tried mogrify but "mogrify.exe: unable to open image '*.gif'"
Code: Select all
mogrify -dispose 3 -delay 4 -loop 0 *.png -crop 80x80 +repage *.gifCode: Select all
mogrify -format gif *.png
mogrify -dispose 3 -delay 4 -loop 0 *.gif -crop 80x80 +repage *.gif