filesbox/app/filesbox_ios/FilesBox/Pods/SVGKit/Source/Utils/SVGKPattern.h
2023-09-21 10:53:23 +08:00

15 lines
360 B
Objective-C

#import <Foundation/Foundation.h>
#import "SVGKDefine.h"
/** lightweight wrapper for UIColor so that we can draw with fill patterns */
@interface SVGKPattern : NSObject
+ (SVGKPattern*) patternWithColor:(UIColor*)color;
+ (SVGKPattern*) patternWithImage:(UIImage*)image;
@property (readwrite,nonatomic,strong) UIColor* color;
- (CGColorRef) CGColor;
@end