0

I am an Ubuntu 12.04.4 LTS 32-bit user and I would like to automate the process of opening several PNG images as layers then saving these layers as a single animated GIF file in the GUI of GIMP. My intention is to write a BASH script but I have no idea on how to do that. I would be indebted if someone can provide help or point me in the right direction.

Nidal
  • 8,956
Vesnog
  • 679
  • 4
  • 11
  • 29

1 Answers1

1

With ImageMagick you can convert a stack of PNG files into an animated GIF quite easily.

$ convert -delay 60 -loop 0 *.png sample.gif

I've used this technique to create several animated GIFs on this very site, for example, What is difference between w and W in escape mode of vim?.

slm
  • 369,824
  • Well thanks for the answer, it seems easier than GIMP command line mode, I will give it a try. – Vesnog Jun 01 '14 at 10:47