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);