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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
imagemagick is one option, GD library is already bundled with PHP: https://www.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.