David - 2009-10-16 21:12:24
First, thanks for the nice script.
I made some tests and so far it worked good.
I was able to create my first animations with the following script:
$frames [ ] = "avatar/avatar1.gif";
$frames [ ] = "avatar/avatar2.gif";
$framed [ ] = 200;
$framed [ ] = 200;
$gif = new GIFEncoder (
$frames,
$framed,
0,
2,
0, 0, 0,
"url"
);
Header ( 'Content-type:image/gif' );
echo $gif->GetAnimation ( );
I want to add a text to each image (Name of the avatars). How can I do that ?