Re: Gif animated [message #16828] |
Tue, 24 August 1999 00:00 |
davidf
Messages: 2866 Registered: September 1996
|
Senior Member |
|
|
Peir Paolo writes:
> I need a procedure to produce an animeted gif. I know that with IDL is
> possible to put more than one image in a gif file, but how I can specify
> the looping?
Creating an animated GIF movie requires *much* more
than just having a stack of GIF images in a file,
although that is a start. But to make a movie, you
are going to have to add control elements and all
kinds of other things. There is a lot of software
that can help. (But not IDL, alas.) See this URL
for a good overview:
http://members.aol.com/royalef/gifanim.htm
Cheers,
David
--
David Fanning, Ph.D.
Fanning Software Consulting
Phone: 970-221-0438 E-Mail: davidf@dfanning.com
Coyote's Guide to IDL Programming: http://www.dfanning.com/
Toll-Free IDL Book Orders: 1-888-461-0155
|
|
|
Re: Gif animated [message #16830 is a reply to message #16828] |
Tue, 24 August 1999 00:00  |
R.Bauer
Messages: 1424 Registered: November 1998
|
Senior Member |
|
|
alberoni wrote:
> Hei,
>
> I need a procedure to produce an animeted gif. I know that with IDL is
> possible to put more than one image in a gif file, but how I can specify
> the looping?
>
> Thanks
>
> Pier Paolo
Do you mean somenthing like
window,0,xsize=1024,ysize=800
for i=0,10 do begin
plot,sin(findgen(200))*i,pos=[0.1,0.1,0.9,0.9]
data=tvrd()
write_gif,'d.gif',data,/multiple
endfor
write_gif,'d.gif',/close
end
|
|
|