19 lines
522 B
Objective-C
19 lines
522 B
Objective-C
//
|
|
// GIGaFileManager.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/18.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface GIGaFileManager : NSObject
|
|
+(void)savaUserAvatorWith:(NSString *)userId image:(UIImage *)image;
|
|
+(UIImage *)getUserAvatorWith:(NSString *)userId;
|
|
+ (UIImage *) scaleFromImage: (UIImage *) image toSize: (CGSize) size;
|
|
+ (UIImage *)thumbnailWithImageWithoutScale:(UIImage *)image size:(CGSize)asize;
|
|
|
|
|
|
@end
|