mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-06-05 16:04:38 +00:00
62 lines
1.4 KiB
Objective-C
62 lines
1.4 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 "RNSVGSolidColorBrush.h"
|
|
|
|
#import "RCTConvert+RNSVG.h"
|
|
#import <React/RCTLog.h>
|
|
|
|
@implementation RNSVGSolidColorBrush
|
|
{
|
|
CGColorRef _color;
|
|
}
|
|
|
|
- (instancetype)initWithArray:(NSArray<RNSVGLength *> *)array
|
|
{
|
|
if ((self = [super initWithArray:array])) {
|
|
_color = CGColorRetain([RCTConvert RNSVGCGColor:array offset:1]);
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (instancetype)initWithNumber:(NSNumber *)number
|
|
{
|
|
if ((self = [super init])) {
|
|
_color = CGColorRetain([RCTConvert CGColor:number]);
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)dealloc
|
|
{
|
|
CGColorRelease(_color);
|
|
}
|
|
|
|
- (CGColorRef)getColorWithOpacity:(CGFloat)opacity
|
|
{
|
|
return CGColorCreateCopyWithAlpha(_color, opacity * CGColorGetAlpha(_color));
|
|
}
|
|
|
|
- (BOOL)applyFillColor:(CGContextRef)context opacity:(CGFloat)opacity
|
|
{
|
|
CGColorRef color = CGColorCreateCopyWithAlpha(_color, opacity * CGColorGetAlpha(_color));
|
|
CGContextSetFillColorWithColor(context, color);
|
|
CGColorRelease(color);
|
|
return YES;
|
|
}
|
|
|
|
- (BOOL)applyStrokeColor:(CGContextRef)context opacity:(CGFloat)opacity
|
|
{
|
|
CGColorRef color = CGColorCreateCopyWithAlpha(_color, opacity * CGColorGetAlpha(_color));
|
|
CGContextSetStrokeColorWithColor(context, color);
|
|
CGColorRelease(color);
|
|
return YES;
|
|
}
|
|
|
|
@end
|