MathGroup Archive 2001

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: movie export

  • To: mathgroup at smc.vnet.net
  • Subject: [mg32121] Re: movie export
  • From: "Borut L" <borut at email.si>
  • Date: Fri, 28 Dec 2001 02:41:36 -0500 (EST)
  • References: <a0en76$pgb$1@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

hi,

you can export a list of n graphic objects as "GIF", which becomes a still
gif for n = 1, and an animated gif for n > 1. I give you my way of doiint
it.


MakeAGif[name_String, dir_String, src_] :=
    (
      SetDirectory[dir];
      Export[name, src, "GIF",
          ConversionOptions -> {
              "Transparency" -> RGBColor[1, 1, 1],
              "Disposal" -> Background,
              "Loop" -> True}
          ] // Timing
      );


bye!

Borut

"Erich Neuwirth" <neuwire6 at mailbox.univie.ac.at> wrote in message
news:a0en76$pgb$1 at smc.vnet.net...
> as far as i know, the mac version of mathematica allows to export
> animation as quicktime movies. is there anything similar
> available for the windows version?
>
>




  • Prev by Date: ParamtricPlot3D
  • Next by Date: Re: size of graphics for animation
  • Previous by thread: movie export
  • Next by thread: Re: movie export