今需要和安卓进行线条颜色粗细坐标的同屏,文档要求颜色值传十六进制编码。
转换思路:根据color分别取出rgb三值,在乘255获得原生值,分别进行16进制转换再进行拼接,前面需加 #
号,还有就是根据web上的转换器得出,0值转换后应为00,而直接将0转换依然是0,少一位,所以应提前判断。
代码如下
+ (NSString *)hexadecimalFromUIColor: (UIColor*) color {
if(CGColorGetNumberOfComponents(color.CGColor) < 4) {
const CGFloat *components =CGColorGetComponents(color.CGColor);
color = [UIColorcolorWithRed:components[0]
green:components[0]
blue:components[0]
alpha:components[1]];
}
if(CGColorSpaceGetModel(CGColorGetColorSpace(color.CGColor)) !=kCGColorSpaceModelRGB) {
return [NSStringstringWithFormat:@"#FFFFFF"];
}
NSString *r,*g,*b;
(int)((CGColorGetComponents(color.CGColor))[0]*255.0) == 0?(r =[NSStringstringWithFormat:@"0%x",(int)((CGColorGetComponents(color.CGColor))[0]*255.0)]):(r= [NSStringstringWithFormat:@"%x",(int)((CGColorGetComponents(color.CGColor))[0]*255.0)]);
(int)((CGColorGetComponents(color.CGColor))[1]*255.0)== 0?(g = [NSStringstringWithFormat:@"0%x",(int)((CGColorGetComponents(color.CGColor))[1]*255.0)]):(g= [NSStringstringWithFormat:@"%x",(int)((CGColorGetComponents(color.CGColor))[1]*255.0)]);
(int)((CGColorGetComponents(color.CGColor))[2]*255.0)== 0?(b = [NSStringstringWithFormat:@"0%x",(int)((CGColorGetComponents(color.CGColor))[2]*255.0)]):(b= [NSStringstringWithFormat:@"%x",(int)((CGColorGetComponents(color.CGColor))[2]*255.0)]);
return [NSStringstringWithFormat:@"#%@%@%@",r,g,b];
}
网友评论