vote up 0 vote down star

hi, how can i change the UIImage's Color through Programming,any help pls?if i send UIImage, its color must be changed ..any help please? if i change rgb color like the following through bitmaphandling it did not work.i have given blackcolor's RGB value like 0,0,0.....

    unsigned char* data = CGBitmapContextGetData (context);
if (data != NULL) 
{
	for(int i=0;i<pixelsWide;i++)
	{
		for(int j=0;j< (pixelsHigh - 100);j++)
		{	
	int offset = 4*((pixelsWide*round(j))+round(i));
	data[offset] = 1.0f; 
	data[offset+1]= 0;  // (red )
	data[offset+2]= 0;   //(green)
	data[offset+3]= 0;   //blue
	//NSLog(@"offset: %i colors: RGB A %i %i %i  %i",offset,red,green,blue,alpha);
	//color = [UIColor colorWithRed:(red/255.0f) green:(green/255.0f) blue:(blue/255.0f) alpha:alpha/255.0f];
		}
	}

}

imRef = CGBitmapContextCreateImage(context);
CGColorSpaceRelease(colorSpace);

// When finished, release the context
CGContextRelease(context);
// Free image data memory for the context
if (data) {
    free(data);
}
if(bitmapData)
{
	free(bitmapData);
}



return [UIImage imageWithCGImage:imRef];

any help please?

flag

57% accept rate
Isn't the class just an image and not a color? What exactly are you asking? – bobber205 Nov 9 at 4:09
i want to change UIimage's color progammatically....the function suppose when i call like this [ self changeImagecolor:myImage color:[UIColor redcolor]]; the function must return the image with color i have mentioned..... i know i have to use bitmapdata ... will you help pls? – senthilmuthu Nov 9 at 5:23

3 Answers

vote up 0 vote down

The RGB data you are operating on is just a copy. After you finish making changes, you need to turn that data back into an image.

I first make a new bitmap:

CGColorSpaceRef space = CGColorSpaceCreateDeviceRGB();
ctx = CGBitmapContextCreate( malloc(dataSize), width, height,
    							8, //	CGImageGetBitsPerComponent(cgImage),
    							bytesPerRow, //CGImageGetBytesPerRow(cgImage),
    							space,
    							//kCGImageAlphaNoneSkipLast | kCGBitmapByteOrder32Big );
    							kCGImageAlphaNoneSkipFirst | kCGBitmapByteOrder32Little);
    							//kCGImageAlphaPremultipliedFirst  | kCGBitmapByteOrder32Little);

    CGColorSpaceRelease( space );

// now draw the image into the context
CGRect rect = CGRectMake( 0, 0, CGImageGetWidth(cgImage), CGImageGetHeight(cgImage) );
CGContextDrawImage( ctx, rect, cgImage );

And get the pixels:

pixels = CGBitmapContextGetData( ctx );

Assuming that your pixel data came from pixels = CGBitmapContextGetData( ctx ); then take that context and build a new image from it:

CGImageRef newImg = CGBitmapContextCreateImage(ctx);
[[UIImage imageWithCGImage:newImg] drawInRect:rect];
CGImageRelease(newImg);
link|flag
did it work for you? i tried , it did not give result please? – senthilmuthu Nov 9 at 9:36
You're doing something wrong, and I can't tell you what it is without knowing what you do after you change the bitmap. How do you turn that back into an image? Search for "[iphone] bitmap image" here on StackOverflow. There are tons of questions and answers. – mahboudz Nov 9 at 9:59
To make sure you are getting the pixel data correctly, read this developer.apple.com/mac/library/…. – mahboudz Nov 9 at 10:01
i did exactly what apple has told, see my question again please.....? returned image is not in black....bcos i have used r-0,g-0,b-0 please – senthilmuthu Nov 9 at 10:10
vote up 0 vote down

I think you can create another context with setting there context color to RGB you want to color your picture. Then draw your UIImage into that context and use that context instead of using directly your picture. This is a concept. This way you're creating offscreen buffer with a colored image. I didn't try this in cocoa, only in carbon, but i suppose it will work in the same way.

link|flag
i did it as you said .....but it did not work , will you provide that code pls? – senthilmuthu Nov 9 at 8:06
i get the context from that image using UIGraphicsBeginImageContext. but it did not work? – senthilmuthu Nov 9 at 8:07
Please see this thread: stackoverflow.com/questions/1112947/… So first set the current color in that context to the RGB you want to color your picture and then draw the picture. After you did it, use the context you've created, not the original picture – Nava Carmon Nov 9 at 9:13
vote up 0 vote down

The answer as a question: What if your UIImage contained a rainbow? What would you expect "changing the image's color" to do with such an image?

link|flag
FWIW - look up one of my answers on stackoverflow dealing with creating a bitmap image on the iPhone from data (I think Google has it as 'objective c make bitmap') What you're not saying is that your image is monotone. THAT is an important part of the question. – inked Nov 9 at 5:33
we can manipulate pixel data,as we can get pixel color of UIImage, i am asking , can we change UIImage's RGB value through programming? – senthilmuthu Nov 9 at 5:52
i have one image, i need the same image with different colors,so if i add one image , if i change color of that image through programming, i can avoid adding lot of images with different colors – senthilmuthu Nov 9 at 5:54
Depending on your image, it might be more efficient to have a lot of different images in different colors. – mahboudz Nov 9 at 8:59

Your Answer

Get an OpenID
or

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