//
// UIImage+wiRoundedRectImage.h
// ThePaperHD
//
// Created by scar1900 on 15/1/5.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface UIImage (wiRoundedRectImage)
+ (id)createRoundedRectImage:(UIImage*)image size:(CGSize)size radius:(NSInteger)r;
+ (UIImage*)cutImageWithRadius:(int)radius withImage:(UIImage *)image;
+ (UIImage*) circleImage:(UIImage*) image withParam:(CGFloat) inset;
@end
|