如何从Swift中的UIColor获取RGB代码(INT)

时间:2015-02-21 09:42:20

标签: swift rgb uicolor

我想在Swift中获取UIColor的RGB值:

let swiftColor = UIColor(red: 1, green: 165/255, blue: 0, alpha: 1)
println("RGB Value is:");
println(swiftColor.getRGB()); <<<<<< How to do that ?

在Java中我会这样做:

Color cnew = new Color();
int iColor = cnew.rgb(1, 165/255, 0);
System.out.println(iColor);

我应该如何获得这个值?

7 个答案:

答案 0 :(得分:80)

Java getRGB() 返回一个整数,表示默认sRGB颜色空间中的颜色(24-31位为alpha,16-23为红色,8-15为绿色,0-7为蓝色)。

UIColor没有这样的方法,但您可以定义自己的方法:

extension UIColor {

    func rgb() -> Int? {
        var fRed : CGFloat = 0
        var fGreen : CGFloat = 0
        var fBlue : CGFloat = 0
        var fAlpha: CGFloat = 0
        if self.getRed(&fRed, green: &fGreen, blue: &fBlue, alpha: &fAlpha) {
            let iRed = Int(fRed * 255.0)
            let iGreen = Int(fGreen * 255.0)
            let iBlue = Int(fBlue * 255.0)
            let iAlpha = Int(fAlpha * 255.0)

            //  (Bits 24-31 are alpha, 16-23 are red, 8-15 are green, 0-7 are blue).
            let rgb = (iAlpha << 24) + (iRed << 16) + (iGreen << 8) + iBlue
            return rgb
        } else {
            // Could not extract RGBA components:
            return nil
        }
    }
}

用法:

let swiftColor = UIColor(red: 1, green: 165/255, blue: 0, alpha: 1)
if let rgb = swiftColor.rgb() {
    print(rgb)
} else {
    print("conversion failed")
}

请注意,只有在UIColor中定义了CIColor时才会有效 &#34; RGB兼容&#34;色彩空间(如RGB,HSB或GrayScale)。有可能 如果颜色是从nil或模式创建的,则会失败 图像,在这种情况下返回getRGB()

备注:正如@ vonox7注意到的那样,返回的值可能是负数 在32位平台上(Java Int方法也是如此)。 如果不需要,请将UInt替换为Int64或{{1}}。

答案 1 :(得分:45)

来自Martin R的回答:该方法还可以返回一个命名元组(一个Swift 2特性):

extension UIColor {

    func rgb() -> (red:Int, green:Int, blue:Int, alpha:Int)? {
        var fRed : CGFloat = 0
        var fGreen : CGFloat = 0
        var fBlue : CGFloat = 0
        var fAlpha: CGFloat = 0
        if self.getRed(&fRed, green: &fGreen, blue: &fBlue, alpha: &fAlpha) {
            let iRed = Int(fRed * 255.0)
            let iGreen = Int(fGreen * 255.0)
            let iBlue = Int(fBlue * 255.0)
            let iAlpha = Int(fAlpha * 255.0)

            return (red:iRed, green:iGreen, blue:iBlue, alpha:iAlpha)
        } else {
            // Could not extract RGBA components:
            return nil
        }
    }
}

答案 2 :(得分:28)

Swift 3.0 IOS 10

let colour = UIColor.red
let rgbColour = colour.cgColor
let rgbColours = rgbColour.components

答案 3 :(得分:5)

写了一个你可以使用的扩展程序。我选择将值返回为CGFloat而不是Int,因为CGFloat是UIColor的init方法所需的

extension UIColor {
    var colorComponents: (red: CGFloat, green: CGFloat, blue: CGFloat, alpha: CGFloat)? {
        guard let components = self.cgColor.components else { return nil }

        return (
            red: components[0],
            green: components[1],
            blue: components[2],
            alpha: components[3]
        )
    }
}

注意:Swift 3.1 / iOS 10兼容,可能无法在iOS 9中工作,因为UIColor.cgColor.components可能无法使用

答案 4 :(得分:3)

Swift 4.从UIColor获取十六进制代码(UInt):

extension UIColor {
    var coreImageColor: CIColor {
        return CIColor(color: self)
    }
    var hex: UInt {
        let red = UInt(coreImageColor.red * 255 + 0.5)
        let green = UInt(coreImageColor.green * 255 + 0.5)
        let blue = UInt(coreImageColor.blue * 255 + 0.5)
        return (red << 16) | (green << 8) | blue
    }
}

答案 5 :(得分:3)

在swift中,您可以使用Color Literal来获取RGB颜色。

enter image description here

就像那样

enter image description here

我希望这对某人有用。

答案 6 :(得分:0)

看起来它在最新版本中变得更简单,值是0-1,因此对于标准rbga结果(a除外),它们必须是* 255

let red = yourColor.lottieColorValue.r * 255
let blue= yourColor.lottieColorValue.b * 255
let green= yourColor.lottieColorValue.g * 255
let alpha = yourColor.lottieColorValue.a