Problem in creating animation using Imagemagick & PHP

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
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Post by Bonzo »

I have only had a quick go at a simple animation and my code is here http://www.rubblewebs.co.uk/imagemagick/animation.php
You may be able to see what you want to do there and modify it.

looking at your code I would change it to this but it is probably not what you want!

Code: Select all

system("/usr/bin/convert -delay 40 xc:white 123.gif -page +5+10 123.gif -page +3+0 123.gif -loop 0 animation.gif") ;
Post Reply