cdts/xdts-ios 3/TreeHole/Code/Gategory/UIImageEx/UIImage+Extender.h
2023-07-27 09:20:00 +08:00

18 lines
381 B
Objective-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