Frame of animated GIF only showing deltas

依然范特西╮ 提交于 2019-12-11 02:17:03

问题


I'm trying to grab the frames of an animated gif. I tried http://gif-explode.com and convert +adjoin loading.gif out%d.gif in ImageMagik. Unfortunately in both cases all but the first and last frame are kinda blurred and partially missing. I'm guessing the creator of the animated gif used some sort of compression where each "frame" is just a delta from the previous frame.

How can I get useable frames from an animated gif like this? Perhaps there's an option somewhere in ImageMagik or another piece of software that can do the reconstruction.


回答1:


You probably need to specify “coalesce” and “dispose” options:

convert -coalesce +adjoin -dispose Previous loading.gif out%d.gif


来源:https://stackoverflow.com/questions/13317092/frame-of-animated-gif-only-showing-deltas

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!