Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i want to create uiimage from array pf RGB color but i am stuck

[arrayImage3 addObject:[UIColor colorWithRed:(red/255.f) green:(green/255.f) blue:(blue/255.f) alpha:(1.0)]];

like array count of 200 so there is difference red green blue values and now i want to create uiimage how i achieve this ??????????

and try to create image with this code but dont no how to use array or it will work

NSLog(@"%@",arrayImage3);
const int WIDTH = 273, HEIGHT = 405;
const int AREA = WIDTH * HEIGHT;

unsigned char *pixelData = (unsigned char*)malloc(AREA * 4);

int offset = 0;
for (int i = 0; i < AREA; ++i) {
    pixelData[offset] = i;
    pixelData[offset + 1] = i + i;
    pixelData[offset + 2] = i;
    pixelData[offset + 3] = 0xFF;
}

CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
CGContextRef gtx = CGBitmapContextCreate(pixelData, WIDTH, HEIGHT, 8, WIDTH * 4, colorSpace, kCGImageAlphaPremultipliedLast);
CGImageRef toCGImage = CGBitmapContextCreateImage(gtx);
UIImage *uiImage = [[UIImage alloc] initWithCGImage:toCGImage];

CGContextRelease(gtx);
CGImageRelease(toCGImage);
free(pixelData);
share|improve this question
Here to get pixels form context then we use UInt32 *pixels = CGBitmapContextGetData( ctx );So to CGBitmapContextCreate method from pixels u need UInt32 *pixels in this method – Prince Jun 27 '12 at 12:40

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.