https://github.com/devxoul/imageeffects
Bring UIImageEffects (WWDC 2013) to UIImage category with handy interface.
https://github.com/devxoul/imageeffects
Last synced: 3 months ago
JSON representation
Bring UIImageEffects (WWDC 2013) to UIImage category with handy interface.
- Host: GitHub
- URL: https://github.com/devxoul/imageeffects
- Owner: devxoul
- License: other
- Created: 2015-05-26T12:52:27.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-27T06:25:14.000Z (about 10 years ago)
- Last Synced: 2025-02-03T17:55:51.358Z (5 months ago)
- Language: Objective-C
- Size: 121 KB
- Stars: 25
- Watchers: 4
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
ImageEffects
============[](http://cocoapods.org/?q=name%3AImageEffects%20author%3Adevxoul)
Bring UIImageEffects (WWDC 2013) to UIImage category with handy interface.
Additional Features
-------------------- Apply blur to image with blur size (CGSize)
Interface
---------```objc
- (UIImage *)lightImage;
- (UIImage *)extraLightImage;
- (UIImage *)darkImage;
- (UIImage *)tintedImageWithColor:(UIColor *)tintColor;
- (UIImage *)blurredImageWithRadius:(CGFloat)blurRadius;
- (UIImage *)blurredImageWithSize:(CGSize)blurSize;
- (UIImage *)blurredImageWithSize:(CGSize)blurSize
tintColor:(UIColor *)tintColor
saturationDeltaFactor:(CGFloat)saturationDeltaFactor
maskImage:(UIImage *)maskImage;
```Installation
------------Use [CocoaPods](https://cocoapods.org).
```ruby
pod 'ImageEffects'
```License
-------Copyright (C) 2014 Apple Inc. All Rights Reserved.