18 lines
381 B
C
18 lines
381 B
C
|
|
//
|
||
|
|
// UIImage+Extender.h
|
||
|
|
// FashionApp
|
||
|
|
//
|
||
|
|
// Created by 1 on 2018/5/24.
|
||
|
|
// Copyright © 2018年 1. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
@interface UIImage (Extender)
|
||
|
|
+ (UIImage *)imageWithColor:(UIColor*)color size:(CGSize)size;
|
||
|
|
+ (UIImage *)createViewImage:(UIView *)shareView;
|
||
|
|
|
||
|
|
+ (UIImage *)createUIImageFormCIImage:(CIImage *)image withSize:(CGSize)size;
|
||
|
|
|
||
|
|
@end
|