I want to resize such an animated GIF file do.gif
If I do convert do.gif -resize 24x24\! do-24.gif
I get it resized in do-24.gif but not animated
How to resize it right way to get the same animation?
I want to resize such an animated GIF file do.gif
If I do convert do.gif -resize 24x24\! do-24.gif
I get it resized in do-24.gif but not animated
How to resize it right way to get the same animation?
first run:
then
I was looking for imagemagick solution as I am familiar with it, but in the end I went with @sam's suggestion of
gifsicle
. It did just what I wanted, no hassle.Can optimize resulting file size in so many ways, but I went with just reducing the size and reducing number of colors. Worked like a charm:
-coalesce
+-deconstruct
After
-coalesce
, you likely want to add a-deconstruct
:The root cause of the problem is that your input GIF was properly minimized: GIF allows the next frame to be just the modified rectangle from the previous one at an offset.
-coalesce
then expands all the frames to the original size, which makes the resize work, but it does not re-compress the frames again as your input image:-deconstruct
is needed for that!Using the test data from this answer: How do I create an animated gif from still images (preferably with the command line)? we can see this clearly with
identify
:out.gif
out-coalesce.gif
out-deconstruct.gif
First, we see how to input file,
out-convert.gif
, was in fact compressed, since frame 2 is only516x516
at offset252+257
, while the full sized frame 1 is1024x1024
.Then, if we compare the three conversions:
out.gif
: All frames are256x256
or larger, and huge at about 5MiB, TODO why?Visually incorrect, since those approximately
256x256
frames have a non-zero offset, e.g.125+128
for frame 2!out-coalesce.gif
: all frames are256x256
and have the correct offset0+0
.Output looks visually correct, but the output file size is 2.0 MiB, which is larger than
out-deconstruct.gif
out-deconstruct.gif
: compressed frames, final output size 1.9 MiB.Not considerably smaller than
out-coalesce.gif
, but I think this is just because the black ground compresses really well, and it could be very significant in general.ffmpeg and gifsicle
I also tried out the following commands:
and both produced an even smaller correctly looking 1.5 MiB output.
See also: How do I create an animated gif from still images (preferably with the command line)?
TODO: why can they make it smaller than
convert
? Are they just selecting better more minimal diff rectangles, or something else?Tested in Ubuntu 18.10, ffpmeg 4.0.2-2, ImageMagick 6.9.10-8.