An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

        

ImageEffects
============

[![CocoaPods](http://img.shields.io/cocoapods/v/ImageEffects.svg?style=flat)](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.