|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-05-08 12:57 UTC] AntonShevchuk at gmail dot com
[2012-05-20 12:11 UTC] pinnaclecomps+php at gmail dot com
[2012-05-28 20:49 UTC] jobklaassen at hotmail dot com
[2012-05-29 13:10 UTC] jobklaassen at hotmail dot com
[2012-05-29 14:54 UTC] mail at jdborg dot com
[2012-05-30 20:15 UTC] mkoppanen@php.net
[2012-05-30 20:15 UTC] mkoppanen@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: mkoppanen
[2012-05-30 20:15 UTC] mkoppanen@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 08 18:00:01 2025 UTC |
Description: ------------ I'm using PHP 5.4.0 (it's not in the list above). The test script attached used to work, but now I only get the one frame (as if I'd done writeImage()) saved. If I do an echo, the image is animating so this (as far as I can see) is an issue only with writeImages(). Test script: --------------- $gif = new Imagick(); $gif->setFormat("gif"); foreach ($files as $file) { $frame = new Imagick(); $frame->readImage($file); $gif->addImage($frame); $gif->setImageDelay(1); } $path = "/any/path/will/do/animation.gif"; $gif->writeImages($path,true); Expected result: ---------------- A gif file written to the path specified that's animated. Actual result: -------------- A gif file written to the path specified that's not animated.