Animated gif not working in IE

MagickWand for PHP is an object-oriented PHP interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning MagickWand for PHP.
Post Reply
Aniruddha

Animated gif not working in IE

Post by Aniruddha »

Hello friends,

I got a problem while creating basic gif.

I am using windows xp and (MagickWand Extension Version 0.1.8 (ImageMagick 6.2.9 09/27/06 Q16)) locally on my pc.
I used the same above code and written a gif image.
<?php

$img1 = NewMagickWand();
MagickReadImage( $img1, "1.jpg" );
MagickSetImageDelay( $img1, 200);

$img2 = NewMagickWand();
MagickReadImage( $img2, "2.jpg" );
MagickSetImageDelay( $img2, 200);

$final = NewMagickWand();
MagickAddImage($final,$img1);
MagickAddImage($final,$img2);

MagickSetFormat($final, 'GIF');
MagickWriteImages($final,"test.gif",true);
?>

This test.gif works fine with firefox but when I tested it with IE it does not animate.

Can you please provide me some information/help about this?

Thanks in advance.
Post Reply