Created
October 26, 2013 07:11
-
-
Save christianroman/7166260 to your computer and use it in GitHub Desktop.
Blend overlay
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (UIImage *)blendOverlay:(UIImage *)topImage withBaseImage:(UIImage *)baseImage toSize:(CGFloat)imageSize | |
{ | |
UIGraphicsBeginImageContext(CGSizeMake(imageSize, imageSize)); | |
[baseImage drawInRect:CGRectMake(0.0, 0.0, imageSize, imageSize)]; | |
[topImage drawInRect:CGRectMake(0.0, 0.0, imageSize, imageSize) blendMode:kCGBlendModeNormal alpha:0.5]; | |
UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); | |
UIGraphicsEndImageContext(); | |
return image; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment