UIImage+Fit.h 342 Bytes
//
//  UIImage+Fit.h
//  Lighting
//
//  Created by 曹云霄 on 2016/12/12.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import <UIKit/UIKit.h>
#import <Accelerate/Accelerate.h>

@interface UIImage (Fit)


//压缩到指定大小
- (UIImage*)imageByScalingAndCroppingForSize:(CGSize)targetSize;



@end