36 lines
1.0 KiB
Objective-C
36 lines
1.0 KiB
Objective-C
/**
|
|
* Copyright (c) 2015-present, Horcrux.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the MIT-style license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <QuartzCore/QuartzCore.h>
|
|
#import <CoreText/CoreText.h>
|
|
#import "RCTConvert+RNSVG.h"
|
|
#import "RNSVGCGFloatArray.h"
|
|
#import <React/RCTConvert.h>
|
|
#import "RNSVGCGFCRule.h"
|
|
#import "RNSVGVBMOS.h"
|
|
#import "RNSVGTextAnchor.h"
|
|
#import "RNSVGUnits.h"
|
|
#import "RNSVGPathParser.h"
|
|
|
|
@class RNSVGBrush;
|
|
|
|
@interface RCTConvert (RNSVG)
|
|
|
|
+ (RNSVGTextAnchor)RNSVGTextAnchor:(id)json;
|
|
+ (RNSVGCGFCRule)RNSVGCGFCRule:(id)json;
|
|
+ (RNSVGVBMOS)RNSVGVBMOS:(id)json;
|
|
+ (RNSVGUnits)RNSVGUnits:(id)json;
|
|
+ (RNSVGCGFloatArray)RNSVGCGFloatArray:(id)json;
|
|
+ (RNSVGBrush *)RNSVGBrush:(id)json;
|
|
+ (RNSVGPathParser *)RNSVGCGPath:(NSString *)d;
|
|
+ (CGRect)RNSVGCGRect:(id)json offset:(NSUInteger)offset;
|
|
+ (CGColorRef)RNSVGCGColor:(id)json offset:(NSUInteger)offset;
|
|
+ (CGGradientRef)RNSVGCGGradient:(id)json offset:(NSUInteger)offset;
|
|
|
|
@end
|