How to extract all frames from 50 gifs

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Hjkma
Posts: 7
Joined: 2015-03-07T15:48:52-07:00
Authentication code: 6789

How to extract all frames from 50 gifs

Post by Hjkma »

I have 50 gifs in one folder. I need to extract all the frames in png format of all the gifs. I was told that need to write a simple script. How to do it? Please note that I am a newbie and do not understand nothing in programming. Thank you for your help!
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: How to extract all frames from 50 gifs

Post by snibgo »

Code: Select all

mogrify -format PNG -layers coalesce *.gif
snibgo's IM pages: im.snibgo.com
Hjkma
Posts: 7
Joined: 2015-03-07T15:48:52-07:00
Authentication code: 6789

Re: How to extract all frames from 50 gifs

Post by Hjkma »

snibgo wrote:

Code: Select all

mogrify -format PNG -layers coalesce *.gif
Thanks you!
Post Reply