Как получить UIImage от Byte ... по коду IPhone - PullRequest
0 голосов
/ 07 декабря 2010

Я получил байтовый массив из UIImage по следующему коду ..

context = CGBitmapContextCreate(    (void*) pixelData,
                                inImage.size.width,
                                inImage.size.height,
                                RGBA_8_BIT,
                                bytesPerRow,
                                colorSpace,
                                kCGImageAlphaPremultipliedLast );

//  Make sure we have our context   
if ( ! context )    
{
    free( pixelData );
    NSLog( @"Context not created!" );
}


//  Draw the image to the bitmap context.   
//  The memory allocated for the context for rendering will then contain the raw image pixelData in the specified color space.
CGRect rect = {     { 0 , 0 }, { inImage.size.width, inImage.size.height }        };
CGContextDrawImage( context, rect, inImage.CGImage );

// Now we can get a pointer to the image pixelData associated with the bitmap context.
pixelData = (RGBAPixel*) CGBitmapContextGetData( context );

Теперь .. Я хочу UIImage из "pixelData" ... help ..

RGBAPixel - это структура ... -> int красный; зеленый цвет; int blue; int alpha;

1 Ответ

1 голос
/ 07 декабря 2010

Вот как я получаю UIImage из контекста.

CGImageRef aCGImg = CGBitmapContextCreateImage(context);
UIImage *aUIImg = [UIImage imageWithCGImage:aCGImg];
CGImageRelease(aCGImg);
...