11

I have some creative Commons gifs I would like to use, but I need them as single frames. However, the gif is optimised, so when I pull it apart via

convert the.gif frames/%02d.tga

Some of the images are just fragments out of place, and way smaller than the original one.

So is there a way to render the single frames as they're viewed in a viewer?

Lanbo
  • 15,118
  • 16
  • 70
  • 147
  • Possible duplicate of [How to extract frames from a GIF file preserving frame dimensions](https://stackoverflow.com/questions/12791505/how-to-extract-frames-from-a-gif-file-preserving-frame-dimensions) – chiliNUT Oct 16 '19 at 07:33

1 Answers1

13

you may want to add a -coalesce option to your command: convert -coalesce the.gif frames/%02d.tga

wehal3001
  • 761
  • 5
  • 12