László Zsidi - 2009-01-19 05:57:04 -
In reply to message 1 from Sak Cyma
The class output already GIF image data!
The store of the output into the server is very simple:
So, catch the animated output by $data = $gif->GetAnimation ( );
The $data variable will keep the binary image data begin with "GIF89a",
and to store this data add this line: fwrite ( fopen ( "animation.gif", "wb" ), $data );
Best regards