-
-
Notifications
You must be signed in to change notification settings - Fork 6k
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
Animated GIF Support #375
Animated GIF Support #375
Conversation
Very awesome! |
Awesome! Could you just reformat the code to match to project coding style please? (brackets on their own lines) |
Sure thing. Sorry about that. |
no pb, thanks for the great work |
It would be nice to have a way to tell the user that the image is a GIF or not so they know how to process it later. Maybe an extra param in |
What about: BOOL isAnimatedGIF = image.images != nil; |
Ah, that works well. No change needed then. |
#377 Adds a getter for that to both UIImage and UIImageView, convenience/readability method for any future users. |
THIS IS AWESOME! Great featrue! (UIImage *)animatedImageNamed:(NSString *)name duration:(NSTimeInterval)duration , there may be some efficiency problem when playing a large gif (I just experience this problem). |
No description provided.