Re: Gif file?
- To: mathgroup at smc.vnet.net
- Subject: [mg23380] Re: Gif file?
- From: "Atul Sharma" <atulksharma at yahoo.com>
- Date: Fri, 5 May 2000 02:07:13 -0400 (EDT)
- References: <8eraf5$hk8@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
With version 4, you can export animations directly:
anim1 = Table[
Plot[Exp[-(x - i/3)^2], {x, 0, 10},
PlotRange -> {0, 1}], {i, 1, 15}];
Export["anim_1_loop.gif", anim1, ConversionOptions
-> {"Loop" -> True}];
See the on-line help for ConversionOptions specific to GIF images. It's a
little hard to find, but follow the help browser path to additional
information section in Built-In Functions: Export: Additional Information.
I also use a package called Animagic, which allows me to modify the GIF
images more easily (to reorder, optimize, adjust the transparency etc.).
There is a free demo version at
http://www.rtlsoft.com/animagic/download.html
AS
--------------------------------------------------
Atul Sharma MD, FRCP(C)
Pediatric Nephrologist,
McGill University/Montreal Children's Hospital
email: atulksharma at yahoo.com
"Blitzer" <drek100 at hotmail.com> wrote in message
news:8eraf5$hk8 at smc.vnet.net...
> Question:
>
> I have a set of graphics made using Mathematica. I would like to "combine"
> these images into an animated gif file. How can I do it? What are the
> suitable software which may be used? Thanks.
>
>
>