I need to resize a animated gif file without destroying the animation.
How can I do it using PHP?
|
I need to resize a animated gif file without destroying the animation. How can I do it using PHP?
| ||||
|
feedback
|
|
if you have imagemagick access, you can do this:
this is most likely possible with the imagemagick plugin if you don't have system() access NOTE: this may create a larger filesize though a smaller dimensions image due to coalescing essentially deoptimizing the image. UPDATE: If you don't have ImageMagick access, you should be able to use a combination of the following steps to resize an animated gif (assuming you have GD access):
This is definitely much more intensive than the ImageMagick route, but it should be technically possible. If you get it working, please share with the world! | |||||||||||
feedback
|
|
You'd need to decompose the gif into frames, thumbnail and re-assemble. | |||
|
feedback
|
|
I think I've got this in the bag. This solution is by no means perfect and contains some brute force here and there, but I was able to append my GD / PHP based image resizing script with enough functionality to support animations. The solution is heavily based on the excellent freeware libraries by László Zsidi - http://www.phpclasses.org/browse/author/283569.html You can check out a quick demo and download the sources from http://forssto.com/gifexample/ (direct link: http://forssto.com/gifexample/gifanimresize.zip ) KNOWN ISSUES:
| |||
|
feedback
|
|
If you dont have Imagemagick in your server you may want to try this : http://www.phpclasses.org/package/7353-PHP-Resize-animations-in-files-of-the-GIF-format.html The class is resizing GIF animations with GD. First parses the frames, then resizes them, after that it compiles them again into single file without losing its delay times,disposal methods, color tables etc. Try and if you find a bug or want to suggest some optimizations etc. you can use the class' forum or leave a comment on the page in my website. And I'll answer that ASAP. | |||
|
feedback
|
|
just creat 3 folder name 1.frame_output 2.images 3.resized_frame_output and download 2 encoder and decoder class from this below link 1.Download class "GIFDecoder.class.php" from http://phpclasses.elib.com/browse/package/3234.html 2.Download class "GIFEncoder.class.php" from http://phpclasses.betablue.net/browse/package/3163.html and then run the script name as "resize_animator.php" , creat a upload html file & Let Enjoy the script. ..save this script as .....index.php.......
........................save and this script as resize_animator.php............
.......................LETS ENJOY............ uncomment the usleep function to see the work happen into those folders.its not necessary but i use it to see the functionality. | ||||
|
feedback
|
|
This all answers except trough ImageMagick didnt work for me. Scripts in answers before this are all full of errors. Even installing ImageMagick was difficult to manage so here is my experience. Here is how to install ImageMagick on windows 7 and xampp 1.7.4. And then follow: http://www.creativearmory.com/tutorials/resize-animated-gifs-with-php-and-imagemagick I have lost hours on scripts at this posts, and ImageMagick and this tutorial was sucessfull in minutes. And one more note: my webserver have ImageMagick by default, so i guess most of servers have it too. | ||||
|
feedback
|
|
The example on http://www.php.net/manual/en/imagick.coalesceimages.php will resize your gif while retaining your frame timing. Something most of the other examples do not do. Other examples rebuild the gif while this one allows you to modify the frames of the image. | |||
|
feedback
|
|
Link 1.Download class "GIFDecoder.class.php" from http://phpclasses.elib.com/browse/package/3234.html 2.Download class "GIFEncoder.class.php" from http://phpclasses.betablue.net/browse/package/3163.html IS BAD. | |||
|
feedback
|