Metview's documentation is now on readthedocs!

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Converting a multi-page PostScript to an animated GIF

convert input.ps -delay 200 -rotate "90<" output.gif

Tip: Alter the speed of animation

To set teh animation speed use

convert input.gif -delay 200 output.gif

Tip: Continuous looping

Some viewers, especially some version of MS Powerpoint, only play a single animation cycle. To make it continuous you can use the option -loop with convert:

convert input.gif -loop 999 output.gif

  • No labels