ios-samples/UIImageEffects
Amy Burns e1fdf01bab Renaming Sample, formatting markdown better 2014-03-25 11:32:36 -04:00
..
Images.xcassets Added ios7 UIImageEffects sample 2014-01-16 22:14:55 -05:00
Resources/Images.xcassets Add new iOS 7 samples 2014-02-19 14:02:06 -09:00
Screenshots Add new iOS 7 samples 2014-02-19 14:02:06 -09:00
AppDelegate.cs Add new iOS 7 samples 2014-02-19 14:02:06 -09:00
Info.plist Add new iOS 7 samples 2014-02-19 14:02:06 -09:00
Main.storyboard Add new iOS 7 samples 2014-02-19 14:02:06 -09:00
Metadata.xml update tags 2014-02-24 16:33:39 +00:00
README.md Renaming Sample, formatting markdown better 2014-03-25 11:32:36 -04:00
UIImageEffects.cs Add new iOS 7 samples 2014-02-19 14:02:06 -09:00
UIImageEffects.csproj Add new iOS 7 samples 2014-02-19 14:02:06 -09:00
UIImageEffects.sln Added ios7 UIImageEffects sample 2014-01-16 22:14:55 -05:00
ViewController.cs Add new iOS 7 samples 2014-02-19 14:02:06 -09:00
ViewController.designer.cs Add new iOS 7 samples 2014-02-19 14:02:06 -09:00

README.md

Image Effects

This is a port of Apple's UIImageEffect sample

From Apple:

UIImageEffects shows how to create and apply blur and tint effects to an image using the vImage, Quartz, and UIKit frameworks.

The vImage framework is suited for high-performance image processing. Using vImage, our app gets all the benefits of vector processing without the need for you to write vectorized code.

##Main classes:

###AppDelegate.cs:

Sets up the application, loads the image and calls the various filters on each tap.

###UIImageEffect.cs:

Contains various extension methods that allow the user to blur images and tint those images. The convenience methods show how to use the API.