filesbox/app/filesbox_ios/FilesBox/Pods/SVGKit/Source/Utils/SVGKPattern.h

15 lines
360 B
C
Raw Normal View History

2023-09-21 02:53:23 +00:00
#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