//// UIImage+Helper.h// CXA//// Created by Xummer on 14-3-3.// Copyright (c) 2014年 Xummer. All rights reserved.//#import <UIKit/UIKit.h>@interfaceUIImage(Helper)+(UIImage*)getThumbnailImage:(UIImage*)imagewithMaxLen:(CGFloat)maxLen;-(UIImage*)thumbnailWithMaxLen:(CGFloat)maxLen;-(UIImage*)imageWithTintColor:(UIColor*)tintColor;-(UIImage*)imageWithGradientTintColor:(UIColor*)tintColor;-(UIImage*)imageWithTintColor:(UIColor*)tintColorblendMode:(CGBlendMode)blendMode;@end@interfaceUIImage(Color)+(UIImage*)imageWithColor:(UIColor*)color;+(UIImage*)imageWithColor:(UIColor*)colorandSize:(CGSize)size;+(UIImage*)imageWithColor:(UIColor*)colorandRect:(CGRect)rect;-(UIImage*)greyScaleImage;@end