vote up 3 vote down star
1

I'm trying to get bitmap context with the following code:


GContextRef MyCreateBitmapContext (int pixelsWide,
                            int pixelsHigh)
{
    CGContextRef    context = NULL;
    CGColorSpaceRef colorSpace;
    void *          bitmapData;
    int             bitmapByteCount;
    int             bitmapBytesPerRow;

bitmapBytesPerRow   = (pixelsWide * 4);                          // 1
bitmapByteCount     = (bitmapBytesPerRow * pixelsHigh);

colorSpace = CGColorSpaceCreateWithName(kCGColorSpaceGenericRGB);// 2
bitmapData = malloc( bitmapByteCount );                          // 3
if (bitmapData == NULL)
{
    fprintf (stderr, "Memory not allocated!");
    return NULL;
}
context = CGBitmapContextCreate (bitmapData,                     // 4
                                pixelsWide,
                                pixelsHigh,
                                8,      // bits per component
                                bitmapBytesPerRow,
                                colorSpace,
                                kCGImageAlphaPremultipliedLast);
if (context== NULL)
{
    free (bitmapData);                                          // 5
    fprintf (stderr, "Context not created!");
    return NULL;
}
CGColorSpaceRelease( colorSpace );                              // 6

return context;                                                 // 7

}

A warning says:'kCGColorSpaceGenericRGB' is deprecated. Does this mean that colorSpace is unchangeable? If that is true, we'll be unable to change the color data of any images using colorSpace. And how to process image then?

flag

2 Answers

vote up 8 vote down check

The generic color space is deprecated. Instead try;

CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();

link|flag
thx for the answer I love you – Unreality Aug 18 at 7:50
vote up 0 vote down

I failed to say it clearly a moment ago, see my question at this link: http://stackoverflow.com/questions/561663/pull-out-the-rgb-component-from-bitmapcontext-on-iphone

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.