AnimatedImage
Represents a collection of Image merged into an animation
AnimatedImage[{__Image}, opts___]
AnimatedImage[File[_String], opts___]
Options
FrameRate
By the default is 12
Constructor
From GIF animation
Import .gif
as usual and supply to AnimatedImage
as a list
AnimatedImage[File["yourGif.gif"], FrameRate->24]
From images
Generate raster images
t = Table[
With[{h = h}, LinearGradientImage[Hue[# + h, .5] &, 50]], {h, 0,
1, .1}];
AnimatedImage[t, FrameRate->24]
Another example
AnimatedImage[Rasterize[Style[#, 40]] & /@ Range[0, 9],
FrameRate -> 6]