AFNetworking / AFCoreImageResponseSerializer

AFNetworking 2.0 Serialization Module to apple Core Image Filters to Images

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AFCoreImageResponseSerializer

AFCoreImageResponseSerializer automatically applies a series of Core Image filters to response images.

Usage

#import <CoreImage/CoreImage.h>
#import "AFCoreImageResponseSerializer.h"
#import "UIImageView+AFNetworking"

CIFilter *blackAndWhiteFilter = [CIFilter filterWithName:@"CIColorControls" keysAndValues:@"inputBrightness", @(0.0), @"inputContrast", @(1.1), @"inputSaturation", @(0.0), nil];
self.imageView.imageResponseSerializer = [AFCoreImageResponseSerializer serializerWithFilters:@[blackAndWhiteFilter]];
[self.imageView setImageWithURL:[NSURL URLWithString:@"http://example.com/image.png"]];

Contact

Mattt Thompson

License

AFCoreImageResponseSerializer is available under the MIT license. See the LICENSE file for more info.

About

AFNetworking 2.0 Serialization Module to apple Core Image Filters to Images

License:MIT License


Languages

Language:Objective-C 88.7%Language:Ruby 11.3%