https://github.com/mxcl/uiinvertedimage
[UIImage invertedImage]
https://github.com/mxcl/uiinvertedimage
Last synced: over 1 year ago
JSON representation
[UIImage invertedImage]
- Host: GitHub
- URL: https://github.com/mxcl/uiinvertedimage
- Owner: mxcl
- Created: 2014-02-10T18:49:05.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-02-22T11:50:24.000Z (over 2 years ago)
- Last Synced: 2024-05-09T08:15:26.415Z (about 2 years ago)
- Language: Objective-C
- Size: 1000 Bytes
- Stars: 8
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Inverts the colors in an image.
```ruby
pod 'UIImage+InvertedImage'
```
```objc
#import "UIImage+InvertedImage.h"
UIImage *img = [UIImage imageNamed:@"foo"];
UIImage *gmi = img.invertedImage;
```