How to extract frames from a GIF file preserving frame dimensions

前端 未结 2 1451
挽巷
挽巷 2021-01-30 10:20

I have the following GIF image file:

\"original

I want to extract its frames (using PGM output

2条回答
  •  抹茶落季
    2021-01-30 10:56

    You can use graphicsmagick:

    gm convert Test.gif +adjoin Test_image%3d.png

    or

    gm convert Test.gif -coalesce +adjoin Test_image%3d.png.

提交回复
热议问题