Although Metview cannot currently output animated GIF images directly, it is possible to convert its PostScript output using the ImageMagick convert command. Below are some examples of doing this, along with an example showing how to incorporate this into a Metview macro. Converting a multi-page PostScript to an animated GIFconvert input.ps -delay 200 -rotate "90<" output.gif Tip: Alter the speed of animationTo set change the animation speed use convert input.gif -delay 200 output.gif Tip: Continuous loopingSome viewers, especially some version versions of MS PowerpointPowerPoint, 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 NOTE: Sometimes Powerpoint PowerPoint requires extra settings for continuous looping of GIFs. Go to the "video tools" menu, which contains "format" and "playback". Under the playback menu, there is a button "Loop until stopped". Click on it, to allow continuous loops! (Thanks to Jean-Noël for this) Tip: Transparent backgroundYou can also use convert to replace any white in the image with a transparent background: convert input.gif -fuzz 10% -transparent white output.gif |