vote up 1 vote down star
1

I have two images. One of them is just plain white and has some areas with alpha transparency. It is intended to be a mask for making another image transparent. The other image, full colored and also PNG, has no alpha applied anywhere.

So I want to add the alpha values of the mask image to the alpha values of the other. Both images have the exact same size. It would be just a matter of looping through the pixels, I guess. Any idea how that would look in detail?

flag

58% accept rate

3 Answers

vote up 1 vote down

Check out Alpha compositing. http://en.wikipedia.org/wiki/Alpha_compositing It looks like you're trying to perform A out B.

link|flag
How would you ship around the problem with premultiplied alpha in iPhone OS? That's the actual problem I think. I know how to read out the data, but don't know how to put it back into the image. – Thanks Jul 15 at 14:58
vote up 1 vote down

"clemahieu" is right -- You don't have to worry about premultiplied alpha in this case, because you're doing high-level operations, and the actual pixel format is a low-level detail.

If you simply composite the white/alpha image over the color/no alpha image (in a color/alpha buffer) using the correct compositing operator, you'll get exactly what you want.

-Wil

link|flag
vote up 0 vote down

The quickest way I can think of is to get a pointer to the buffer for each image and combine them in a third buffer looping through all of the pixels, like you mentioned.

Or if the source (color) image has an alpha channel, but it is set to 1 just replace that channel with the alpha from the second image.

Starting in Panther Quartz has an alpha only bitmap context that can be used to mask other images. The excellent book programming with quartz 2d and pdf graphics in mac os x has a section on alpha only bitmap contexts.

To get the alpha from a crunched PNG file you can do something similar to the following:


    CGImageRef myImage = [self CGImage];
    CGSize newSize = {CGImageGetWidth(myImage), CGImageGetHeight(myImage)};

if(!isPowerOf2(newSize.width))
	newSize.width = nextPowerOf2(newSize.width);
if(!isPowerOf2(newSize.height))
	newSize.height = nextPowerOf2(newSize.height);


const GLint picSize = newSize.height * newSize.width * 4;

// The bitmapinfo provided by the CGImageRef isn't supported by the bitmap context.
// So I'll make a conforming bitmap info
CGBitmapInfo myInfo = kCGImageAlphaPremultipliedLast;

unsigned char * actual_bytes = new unsigned char[picSize];
CGContextRef imageContext = CGBitmapContextCreate(
												  actual_bytes,
												  newSize.width,
												  newSize.height,
												  CGImageGetBitsPerComponent(myImage),
												  newSize.width * 4,
												  CGImageGetColorSpace(myImage),
												  myInfo);

CGContextSaveGState(imageContext);
CGContextDrawImage(imageContext, [self bounds], myImage);
CGContextRestoreGState(imageContext);

At this point actual_bytes has the RGBA data. Don't forget to delete the memory for actual_bytes. This is a category on UIImage so self is a UIImage that has already been loaded from a PNG file.

link|flag
good idea! Unfortunately image manipulation on iPhone OS is very different. They premultiply the alpha from an PNG with "pngcrunch" upon building the project. That's done for performance. But then it's horrible to get alpha out of there, like I figured out... – Thanks Jul 15 at 14:57
I didn't think that getting the alpha out of the PNG in my iPhone app was bad at all. If I get some time I'll post the code. – Mark Thalman Jul 15 at 15:45

Your Answer

Get an OpenID
or

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