澎湃iPad上线版本

UIImage+ImageEffects.h 580B

    // // UIImage+ImageEffects.h // ThePaperDemo // // Created by Scar on 14-9-11. // Copyright (c) 2014年 scar1900. All rights reserved. // #import <Foundation/Foundation.h> @interface UIImage (ImageEffects) - (UIImage *)applyLightEffect; - (UIImage *)applyExtraLightEffect; - (UIImage *)applyDarkEffect; - (UIImage*)applyLightDarkEffect; - (UIImage *)applyTintEffectWithColor:(UIColor *)tintColor; - (UIImage *)applyBlurWithRadius:(CGFloat)blurRadius tintColor:(UIColor *)tintColor saturationDeltaFactor:(CGFloat)saturationDeltaFactor maskImage:(UIImage *)maskImage; @end