Skip to content

AFNetworking 2.0 Serialization Module to apple Core Image Filters to Images

License

Notifications You must be signed in to change notification settings

taroyuyu/AFCoreImageResponseSerializer

 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 88.7%
  • Ruby 11.3%