sradu wrote:glennrp wrote:What happens when you create an aniGIF on one platform and
view it on the other, and vice versa? What application are you
using to view the GIF?
On mac os x I am opening the aniGIF in 2 browsers (Chrome & Firefox) and via the system preview (pressing space on the gif in Finder). The behavior is consistent that the gifs created on the production xen machine have the crazy fast animation while the ones created in development work.
I haven't been able to do it the other way around, view animated gifs on the production machine.
Well, that does sound like a problem with ImageMagick, then. However, looking at the diff
between coders/gif.c in IM-6.6.9-7 and 6.7.1-2 (I don't have -1) doesn't reveal
any changes that might affect how the interframe delay is written.
I built 6.6.9-7 and 6.7.1-2 (don't have 6.7.1-1 source) on my Ubuntu platform and ran this
commandline which should be equivalent to your script:
Code: Select all
convert -delay 14.2 -size 100x100 xc:white xc:red xc:green xc:blue -layers optimize delay.gif
identify -verbose delay.gif | grep Delay
All versions 6.6.9-7, 6.7.1-2, and 6.7.4-4 produced the same 4 lines of output
- Delay: 14x100
Delay: 14x100
Delay: 14x100
Delay: 14x100
and the three resulting animated GIF files were identical.
What does "identify -verbose file.gif | grep Delay" show for your
good and bad files?