Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I blend two images in additive blending mode with Core Graphics?

The enum does not have something like a kCGBlendModeAdd: http://developer.apple.com/library/ios/documentation/GraphicsImaging/Reference/CGContext/Reference/reference.html#//apple_ref/doc/c_ref/CGBlendMode

Any solution?

share|improve this question

1 Answer

up vote 2 down vote accepted

What is wrong with kCGBlendModePlusLighter?

From the linked document:

R = MIN(1, S + D)

So that is an additive blending capped at 1.0.

share|improve this answer
Thanks. Note to self: take some coffee before asking obvious questions on SO. – pt2ph8 Nov 21 '11 at 19:12
:D - no worries – Till Nov 21 '11 at 19:13

Your Answer

 
discard

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

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