So lets say I have 10 animated gifs in my folder in my server.
I am wanting to generate non animated thumbnails for these gifs. How can I do this dynamically without having to save any thumbnails into folders.
So lets say I have 10 animated gifs in my folder in my server.
I am wanting to generate non animated thumbnails for these gifs. How can I do this dynamically without having to save any thumbnails into folders.
imagemagick is one option, GD library is already bundled with PHP: http://us1.php.net/manual/en/function.imagecopyresized.php
By not saving the image be aware that your script could end up being a resource hog. It may also choke on larger images.