Tagged Questions
The cgcolorspace tag has no wiki summary.
4
votes
2answers
395 views
Is there a penalty for mixing color spaces? (Core Graphics)
If I'm writing drawing code in Core Graphics on Mac OS X or iPhone OS, I can set the active fill color to red by calling:
CGContextSetRGBFillColor(context, 1.0, 0.0, 0.0, 1.0); // RGB(1,0,0)
If I ...
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
1answer
4k views
Get RGB value from UIColor presets
I my application I pass RGB color value to server. My app uses UIColor predefined values, like [UIColor grayColor], [UIColor redColor]. I know that I can use following code:
const CGFloat *c = ...
2
votes
1answer
166 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
1answer
230 views
Does the result of CGImageGetColorSpace(image) have to be released?
I'm scaling a CGImageRef. I found various code examples on the web that begin like so:
CGColorSpaceRef colorspace = CGImageGetColorSpace(image); // "Get" colorspace
CGContextRef context = ...
1
vote
0answers
81 views
Is it possible to have a CGColorSpace with 16-bit worth of entries instead of just 8-bit?
So I am working on a medical app for the iPad, and the images I am needing to do some client side manipulation to are 16-bit grayscale. From what I read about the CGColorSpace, it appears to only ...
1
vote
1answer
273 views
Determining the Colorspace of a UIImage
I'm wondering if there's an easy way to get the colorspace of an image (i.e. an image loaded into a UIImage)? For example, I have a TIFF image and I'd like to be able to determine if it uses the RGB ...
0
votes
0answers
40 views
GBitmapContextCreate: unsupported parameter combination
Having trouble with CGBitmapContextCreate and getting:
Error: Unsupported pixel description - 1 components, 8 bits-per-component, 8 bits-per-pixel
with this code:
float *bitmap = ...
0
votes
1answer
438 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
3answers
675 views
CGGradientCreateWithColors returns a null pointer
Good evening!
The problem is described in the subj.;
Here's my code below:
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
NSArray *colors = [NSArray arrayWithObjects:[UIColor redColor], ...
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 = ...