Search found 4 matches

by Intersekt
2011-08-10T23:01:26-07:00
Forum: IMagick
Topic: Gif not looping
Replies: 6
Views: 19062

Re: Gif not looping

Thank you very much ;)
by Intersekt
2011-08-08T22:57:32-07:00
Forum: IMagick
Topic: Gif not looping
Replies: 6
Views: 19062

Re: Gif not looping

Call to undefined method Imagick::setImageLoop()
I added the delay(0) but nothing changes
by Intersekt
2011-08-08T22:15:16-07:00
Forum: IMagick
Topic: Gif not looping
Replies: 6
Views: 19062

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.
by Intersekt
2011-08-08T10:49:57-07:00
Forum: IMagick
Topic: Gif not looping
Replies: 6
Views: 19062

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 ...