Can a thumbnail of an animated gif be animated?

I have an animated gif I want to show in two places, having two different sizes.

I am creating two sizes in my functions.php, using

add_image_size( 'small-feature', 500, 300 );
add_image_size( 'gallery-thumb', 120, 9999 );

If the uploaded file is 500 x 300 px, it will keep the animation, as it no resizing happens. If the image is to be resized, the animation is lost.

Is there a way I can resize these images and still keep the animation in the original .gif file?

1 Answer
1

According to this stackoverflow question, there is a program called imagemagick that might do this for you server side but it would probably be outside of WordPress. Otherwise, it looks like you have to shrink every frame and then put it all back together.

Leave a Comment