thanks for read my post,my english is bad,I hope you know what i said.
<?php
$newMw = newmagickwand();
magicksetformat($newMw,'gif');
magickreadimage($newMw,'old.gif');
MagickWriteImages($newMw,'filename.gif');
?>
The code's operation time is 700ms!!!
<?php
$newMw = newmagickwand();
magicksetformat($newMw,'jpg');
magickreadimage($newMw,'old.gif');
MagickWriteImages($newMw,'filename.gif');
?>
But this code's operation time only 30ms!!!
How can when i use magicksetformat($newMw,'gif') more fast