web-dev-qa-db-ja.com

UIColorからrgbを抽出する

これは前に尋ねましたが、私の例は機能していないようです。

const CGFloat *toCol = CGColorGetComponents([[UIColor greenColor] CGColor]);

GDBで配列を見ると、配列は空です。ヒントはありますか?

80
J T

指定したコードサンプルが動作するはずです。

これを試して:

UIColor uicolor = [[UIColor greenColor] retain];
CGColorRef color = [uicolor CGColor];

int numComponents = CGColorGetNumberOfComponents(color);

if (numComponents == 4)
{
  const CGFloat *components = CGColorGetComponents(color);
  CGFloat red = components[0];
  CGFloat green = components[1];
  CGFloat blue = components[2];
  CGFloat alpha = components[3];
}

[uicolor release];
109

IOS 5では、次を使用できます。

UIColor *color = [UIColor orangeColor];
CGFloat red = 0.0, green = 0.0, blue = 0.0, alpha = 0.0;

if ([color respondsToSelector:@selector(getRed:green:blue:alpha:)]) {
    [color getRed:&red green:&green blue:&blue alpha:&alpha];
} else {
    const CGFloat *components = CGColorGetComponents(color.CGColor);
    red = components[0];
    green = components[1];
    blue = components[2];
    alpha = components[3];
}
38
Teetotum

以下は、RGB以外の色も考慮したオールラウンドソリューションです。 [UIColor blackColor]

UIColor *color = [UIColor blackColor];
CGFloat red = 0.0, green = 0.0, blue = 0.0, alpha = 0.0;
// iOS 5
if ([color respondsToSelector:@selector(getRed:green:blue:alpha:)]) {
     [color getRed:&red green:&green blue:&blue alpha:&alpha];
} else {
     // < iOS 5
     const CGFloat *components = CGColorGetComponents(color.CGColor);
     red = components[0];
     green = components[1];
     blue = components[2];
     alpha = components[3];
}

// This is a non-RGB color
if(CGColorGetNumberOfComponents(color.CGColor) == 2) {
    CGFloat hue;
    CGFloat saturation;
    CGFloat brightness;
    [color getHue:&hue saturation:&saturation brightness:&brightness alpha:&alpha];

}
14
Willster

Memcpyを使用するだけです:

CGColorRef tmpColor = [[currentColorView backgroundColor] CGColor];
CGFloat newComponents[4] = {};
memcpy(newComponents, CGColorGetComponents(tmpColor), sizeof(newComponents));
// now newComponents is filled with tmpColor rgba data
7
Realexer

ウィルスターの方向に感謝します。 (colorWithWhite:alpha:で作成された)グレースケールカラーを使用している人は、以下のコードサンプルを使用して、白の値を把握できます(HSVメソッドは、この方法で作成された色では機能しません)。

CGFloat red = 0.0, green = 0.0, blue = 0.0, alpha = 0.0, white = 0.0;

// This is a non-RGB color
if(CGColorGetNumberOfComponents(self.color.CGColor) == 2) {
    [self.color getWhite:&white alpha:&alpha];
}
else {
    // iOS 5
    if ([self.color respondsToSelector:@selector(getRed:green:blue:alpha:)]) {
        [self.color getRed:&red green:&green blue:&blue alpha:&alpha];
    } else {
        // < iOS 5
        const CGFloat *components = CGColorGetComponents(self.color.CGColor);
        red = components[0];
        green = components[1];
        blue = components[2];
        alpha = components[3];
    }
}
5
ianthetechie

チェックアウト icolor-utilities 。これを行うための非常に優れたライブラリや、UIColorを使用した他の多くの便利な機能があるようです。たとえば、このライブラリでは次のように記述できます。

CGFloat red = [myColor red];
1
benvolioT

この記事は、私がこの問題を解決する、または少なくともそれを解決するフレームワークを構築するのに役立ちました。

http://developer.Apple.com/iphone/library/qa/qa2007/qa1509.html

1
OhioDude

以下は、任意の色からRGBコンポーネントを取得するためのより直接的なサンプルコードです。

IColorプリセットからRGB値を取得

1
Jesse Rusak