Search found 4 matches
- 2011-08-10T23:01:26-07:00
- Forum: IMagick
- Topic: Gif not looping
- Replies: 6
- Views: 17677
Re: Gif not looping
Thank you very much
- 2011-08-08T22:57:32-07:00
- Forum: IMagick
- Topic: Gif not looping
- Replies: 6
- Views: 17677
Re: Gif not looping
I added the delay(0) but nothing changesCall to undefined method Imagick::setImageLoop()
- 2011-08-08T22:15:16-07:00
- Forum: IMagick
- Topic: Gif not looping
- Replies: 6
- Views: 17677
Re: Gif not looping
Yes I was searching for a setloop option too but I didn't find any. I've used this script before and I never had any problem so I don't know if report this as bug or not.
- 2011-08-08T10:49:57-07:00
- Forum: IMagick
- Topic: Gif not looping
- Replies: 6
- Views: 17677
Gif not looping
Hello everyone, I'm trying to create an animate GIF using imagick on PHP. My problem is that my gif loops only once. http://www.gamingupgraded.com/subdomains/imagick/3.gif <?php $im=new Imagick(); $bg=new Imagick(); for ($i=0; $i<10; $i++){ $bg->readImage("./test/image_$i.gif"); } $im->addImage($bg ...