单军华
2018-07-11 7b02207537d35bfa1714bf8beafc921f717d100a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
//  UMSocialCoreImageUtils.h
//  UMSocialCore
//
//  Created by 张军华 on 16/9/18.
//  Copyright © 2016年 UMeng. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
 
 
@interface UMSocialCoreImageUtils : NSObject
 
+ (UIImage *)fixOrientation:(UIImage *)sourceImage;
 
+ (UIImage *)imageWithColor:(UIColor *)color;
 
+ (UIImage *)imageByScalingImage:(UIImage*)image proportionallyToSize:(CGSize)targetSize;
 
+ (NSData *)imageDataByCompressImage:(UIImage*)image toLength:(CGFloat)targetLength;
 
+ (UIImage *)imageByCompressImage:(UIImage*)image toLength:(CGFloat)targetLength;
 
@end