|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-07-31 06:55 UTC] vito@php.net
-Status: Assigned
+Status: Closed
[2012-07-31 06:55 UTC] vito@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 10:00:01 2025 UTC |
Description: ------------ I want to create a two frames gif,frames order error Reproduce code: --------------- <?php $img = new Gmagick('1.gif'); $img->setImageDelay(100); $img->nextImage(); $img->addImage(new Gmagick('2.gif')); $img->setImageDelay(100); $img->writeimage('foo.gif'); ?> Expected result: ---------------- first frame: 1.gif second frame: 2.gif Actual result: -------------- first frame: 2.gif second frame: 1.gif