Re: How to create an animated gif (was: How to roll up
- To: mathgroup at smc.vnet.net
- Subject: [mg118366] Re: How to create an animated gif (was: How to roll up
- From: Sol Lederman <sol.lederman at gmail.com>
- Date: Sun, 24 Apr 2011 08:26:57 -0400 (EDT)
Heike,
That did it. Thank you very much.
Sol
On Sat, Apr 23, 2011 at 9:46 AM, Heike Gramberg <heike.gramberg at gmail.com>wrote:
> To create an animated gif, you need to export a list of images, not an
> Animate object, e.g.
>
> list =
> Table[Graphics[{Blue,
> Table[Line[{{a - x, 0}, {0, x}, {x - a, 0}, {0, -x}, {a - x,
> 0}}], {x, 0, a}]}], {a, 0, 20}];
>
> Export["animation.gif", list]
>
> Heike.
>
>