The cgcolor tag has no wiki summary.
15
votes
6answers
15k views
Extracting rgb from UIColor
Seen this asked before but my example does not seem to work.
const CGFloat *toCol = CGColorGetComponents([[UIColor greenColor] CGColor]);
The array is empty from looking at it with GDB. Any hints?
...
5
votes
2answers
2k views
Anomalous results getting color components of some UIColors
I'm trying to extract the rgb components of a UIColor in order to hand-build the pixels in a CGBitmapContext. The following sample code works fine for most of the UIColor constants but, confusingly, ...
4
votes
2answers
4k views
How to convert colors from one color space to another?
Is there a Cocoa Touch way to convert colors from one color space to another?
At the end of this code:
UIColor *grey = [UIColor colorWithWhite: 0.5 alpha: 1.0];
CGColorRef greyRef = [grey CGColor];
...
3
votes
3answers
4k views
What does CGColorGetComponents() return?
CGFloat* colors = CGColorGetComponents(hsbaColor.CGColor);
Does this return a float, or an array of floats? It looks like the asterisk is shorthand for creating an array. Is that correct?
When I ...
2
votes
1answer
188 views
Creating/comparing Lab-profiled colors in iOS
For an application I'm working on I'm trying to create and compare (distance between) CIE Lab profiled colors.
I know there are ways of converting from the typical RGB to Lab with some math, but I'd ...
2
votes
2answers
5k views
How to access the CGColor property of UIColor in CGContextSetFillColorWithColor?
CGContextSetFillColorWithColor(g, [UIColor greyColor].CGColor);
I'm trying to follow O'Reilly's iPhone Game Development book on page 73 Chapter 3 but I'm running into a compile error that states
...
1
vote
2answers
57 views
Efficiently Modifying CGColor
I have an iPhone app where I'm "adding" a lot of CGColors together by breaking them down into their components, averaging the components, and then making a new color with the new components. When I ...
1
vote
2answers
230 views
ios: how to solve this memory leak warning
I got the following code line:
mainLayer.shadowColor = CGColorCreate( CGColorSpaceCreateDeviceRGB(), components );
When I run Product->Analyse in xcode it gives me the warning:
Potential leak of ...
1
vote
5answers
668 views
How to convert from a hex value to a UIColor?
I have a hexadecimal color value and I want to convert it to a UIColor. UIColor can take in a Hue/Saturation/Brightness (HSB) value or a Red/Blue/Green (RGB) value. How can I use the hex value to ...
1
vote
1answer
639 views
How to draw a native looking statusitem background on a CALayer
Actually I want to draw the background of a selected NSStatusItem on the CALayer of my custom statusItemView. But since
- (void)drawStatusBarBackgroundInRect:(NSRect)rect ...
0
votes
1answer
50 views
Is it possible to anchor a CGPattern-image background color to the center of a CALayer?
I've set up a layer as follows:
CALayer *layer = [CALayer layer];
layer = /* create a CGColorRef with a pattern image */;
This layer is simply displayed in my window. My draw/release functions for ...
0
votes
0answers
77 views
Adding image pickers and colour wells to the iOS Preferences App
I've decided to use the Preferences application on the iPhone/Pod/Pad to set user-definable parameters in the application I'm developing. I already have several successfully set up via Root.plist. I ...
0
votes
1answer
285 views
CGColor - CGColorGetComponents doesn't seem to work properly?
I am trying to get the rgb values from a CGColor
I use the followig code. The problem is that all returned values for red, green, and blue always return as a float and they are always between 0 and 1 ...
0
votes
2answers
138 views
Deciphering CGColor
Hi Im trying to get my head around CGColor, Ive been doing a lot of Quartz2d stuff. In the past I've fudged it with [UIColor xColor].CGColor.... but with this new compiler I get crashes when i ...
0
votes
2answers
249 views
How do I convert a CGColor into an NSObject when using Monotouch?
I am trying to animate a CGColor fillColor property on a CAShapeLayer. I can get it working just fine using Objective-C with the following syntax:
- (void)viewDidLoad {
[super viewDidLoad];
...
0
votes
2answers
173 views
How to store CGColor in Core Data?
I'm wanting to store/save CGColor in Core Data.
Currently, I'm storing colours with floats for red, blue, green, etc.
I'm needing to store the topColor and bottomColor as they are used in a very ...
0
votes
3answers
431 views
Instruments alleges Memory leak with [UIColor CGColor]
I am just in the process of tracking down some memory leaks with Instruments. It claims I am leaking in the middle of a drawRect method. Here is the code:
- (void)drawRect:(CGRect)rect {
if ...
0
votes
4answers
1k views
iPhone - Help with CGGradientCreateWithColorComponents and creating gradient as per screenshot
I am trying to apply the same gradient as per the screen shot below using CGGradientCreateWithColorComponents.
This is what I'm using at the moment, however it's not quite right and I'm after a ...
0
votes
1answer
458 views
iOS 256 Colors (VGA) to RGB
I'd like to convert a VGA color (256 colors; 8 bit) to a RGB color on iOS.
Is it possible to compute this or do I have to use color tables (using CGColorSpaceCreateIndexed).
UIColor does not support ...
0
votes
4answers
1k views
How to get color components of a CGColor correctly
I have a UILabel with black color;
i am writing the following code to get black color's components.
UIColor *aColor = [aLabel.textColor retain];
const CGFloat* components = ...
0
votes
1answer
517 views
Iphone development: UIColor / CGColor components comparison
I've got some internal codes for colors in my application, so I created a function that, given a color, returns the code. I'm having problems as it just doesn't work and return always "01" for every ...
0
votes
1answer
562 views
Trying to get the CGColor value from a property causes crash
I'm trying to set a property like so -
-interface:
@property (readwrite, assign) CGColorRef otherBallColor;
-someMethod:
CGColorRef ballColor = [UIColor colorWithRed:255.0/256.0 green:165.0/256.0 ...