Animated GIF and getImageBlob ?
Posted: 2008-10-07T12:38:05-07:00
Hello,
I have a problem for output an animated GIF to the browser.
Here is my symple code :
Just the first frame is displayed.
Thank for your response.
I have a problem for output an animated GIF to the browser.
Here is my symple code :
Code: Select all
header('Content-type: image/gif');
$im = new Imagick('animated.gif');
$im->setFormat('gif');
echo $im->getImageBlob();
exit();
Thank for your response.