Of course, there is a CGBlendMode enumeration that you can use to specify a blend operation. usage method:
CGContextSetBlendMode()
or
[image drawInRect:CGRectMake(0, 0, width, height) blendMode:mode alpha:1]
more on the developer's site:
link text
source
share