vote up 1 vote down star
1

Suppose I have image canvas or previously loaded image which supports transparency (gif/png). What are the steps to implement changing transparency for the image, but not for the whole image, but only a part of it? I undestand I should use CGContext, but i'm lacking the details.

flag

1 Answer

vote up 2 vote down

1) create a memory buffer

2) cast it into a CGContext with alpha by using CGBitmapContextCreate

3) draw your image into it with CGContextDrawImage

4) modify the mask via the buffer you created in step 1.

5) $$$

link|flag
lol, +1 for step number 5. :) – Dana Holt Jun 22 at 12:30

Your Answer

Get an OpenID
or

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