mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-05 22:56:11 +00:00
Added CI workflow and local pre-commit hook for formatting and linting the newly added JS, iOS and Android code.
72 lines
1.5 KiB
Plaintext
72 lines
1.5 KiB
Plaintext
/**
|
|
* 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 "RNSVGUIKit.h"
|
|
|
|
#import <React/RCTLog.h>
|
|
#import "RCTConvert+RNSVG.h"
|
|
|
|
@implementation RNSVGSolidColorBrush {
|
|
RNSVGColor *_color;
|
|
}
|
|
|
|
- (instancetype)initWithArray:(NSArray<RNSVGLength *> *)array
|
|
{
|
|
if ((self = [super initWithArray:array])) {
|
|
_color = [RCTConvert RNSVGColor:array offset:1];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (instancetype)initWithNumber:(NSNumber *)number
|
|
{
|
|
if ((self = [super init])) {
|
|
_color = [RCTConvert RNSVGColor:number];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (instancetype)initWithColor:(RNSVGColor *)color
|
|
{
|
|
if ((self = [super init])) {
|
|
_color = color;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)dealloc
|
|
{
|
|
_color = nil;
|
|
}
|
|
|
|
- (CGColorRef)getColorWithOpacity:(CGFloat)opacity
|
|
{
|
|
CGColorRef baseColor = _color.CGColor;
|
|
CGColorRef color = CGColorCreateCopyWithAlpha(baseColor, opacity * CGColorGetAlpha(baseColor));
|
|
return color;
|
|
}
|
|
|
|
- (BOOL)applyFillColor:(CGContextRef)context opacity:(CGFloat)opacity
|
|
{
|
|
CGColorRef color = [self getColorWithOpacity:opacity];
|
|
CGContextSetFillColorWithColor(context, color);
|
|
CGColorRelease(color);
|
|
return YES;
|
|
}
|
|
|
|
- (BOOL)applyStrokeColor:(CGContextRef)context opacity:(CGFloat)opacity
|
|
{
|
|
CGColorRef color = [self getColorWithOpacity:opacity];
|
|
CGContextSetStrokeColorWithColor(context, color);
|
|
CGColorRelease(color);
|
|
return YES;
|
|
}
|
|
|
|
@end
|