Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lbrndnr/LBGIFImage
This is a small category that creates an animated UIImage out of a gif image.
https://github.com/lbrndnr/LBGIFImage
Last synced: about 1 month ago
JSON representation
This is a small category that creates an animated UIImage out of a gif image.
- Host: GitHub
- URL: https://github.com/lbrndnr/LBGIFImage
- Owner: lbrndnr
- License: mit
- Created: 2012-01-07T03:15:11.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2016-10-17T06:46:05.000Z (about 8 years ago)
- Last Synced: 2024-10-28T11:49:59.945Z (about 2 months ago)
- Language: Objective-C
- Homepage: http://laurinbrandner.ch
- Size: 825 KB
- Stars: 174
- Watchers: 8
- Forks: 20
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - LBGIFImage - This is a small category that creates an animated UIImage out of a gif image. (etc)
README
# LBGIFImage
## About
LBGIFImage is an easy and efficient way to display [animated GIF images](http://en.wikipedia.org/wiki/Graphics_Interchange_Format). It's based on the `ImageIO.framework` which makes it fast and lightweight.## Installation
1. Drag the `LBGIFImage` folder into your project.
2. Import the `ImageIO.framework`.### Example
```objc
NSData* data = [NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"image" ofType:@"gif"]];
UIImage* image = [UIImage animatedGIFWithData:data];
```## License
LBGIFImage is licensed under the [MIT License](http://opensource.org/licenses/mit-license.php).