-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gif repeat bug #3
Comments
If I set it to one I am getting two iterations. I can't work out how to make it go through the frames once only. |
Yep, same with me, maybe removing the "NETSCAPE 2.0" tag will fix that. |
Just posting to say I've seen this issue, but will not be able to attack it right now. I am hopeful time will be available soon for this library. |
Alright, I'm gonna try removing the ApplicationIdentification tag or changing the FileVersion to the first GIF specification. |
Looks like different browsers implement the standard differently: |
oh, no! |
If I read the property item This, to me means that the signature of the gif encoder is incorrect as Microsoft are interpreting the loopcount value as the number of times to play the animation not the number of times to loop the animation. (Does that make sense?)
Should make the animation play n times rather than play n+1 times. Anyhow.. to stop the animation playing again if the signature worked that way you would edit the
I'd have submitted a pull request but I don't want to change the signature of the method. |
Hey guys, Changing the signature should probably be avoided, but adding overloads - etc should be fine. |
The Repeat property of the gif encoder class works with the values:
-1 = No repeat.
0 = Repeat forever.
n = +Iterations. (if n set to 3, the frames will be displayed 4 times)
The problem is, if i set n to 1, iterates 3 times. But not 2 times as expected!
The text was updated successfully, but these errors were encountered: