Hello,
Do you know if it is possible to create an animation with 2 PNG files?
Let's say file1.png is a picture of a smiley happy and let's say file2.png is a picture of a smiley angry...
I would like to know if it is possible by using a command line to make an animation (a .GIF file) with file1.png and file2.png...
Moreover is it possible to loop this animation?
file1.png is visible x seconds >> file2.png is visible x seconds >> loop
Thank you in advance for helping me...
M.
How to create a GIF with 2 PNG files (command line)?
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: How to create a GIF with 2 PNG files (command line)?
For starters, try this:
Code: Select all
convert -loop 0 -delay 100 in1.png in2.png out.gif
snibgo's IM pages: im.snibgo.com
Re: How to create a GIF with 2 PNG files (command line)?
Hi Snibgo,
It works perfectly...
Thank you very much for your help!
M.
It works perfectly...
Thank you very much for your help!
M.