This is the client library for rendering the image previews.
Look at this blog post for more details.
You can find the .NET server component on Github.
To run the example project, clone the repo, and run pod install
from the Example directory first.
ImagePreview is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "ImagePreview"
This library extends UIImage with 2 methods.
init?(body: NSData)
func blurredImageWithRadius(blurRadius: CGFloat, tintColor: UIColor?, saturationDeltaFactor: CGFloat, maskImage: UIImage? = nil) -> UIImage?
Take a look at the example project how this is being used.
You can override the headers if you write your own server implementation and the headers do not match.
// version - NSData
ImagePreviewSettings.sharedSettings.headers = [
1 : NSData(base64EncodedString: "your base64 encoded header", options: [])!
]
Tim van Steenis, tims@q42.nl
ImagePreview is available under the MIT license. See the LICENSE file for more info.