Overlaying a UIImage with a color? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T08:06:38Zhttp://stackoverflow.com/feeds/question/845278http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/845278/overlaying-a-uiimage-with-a-color0Overlaying a UIImage with a color?Oliver2009-05-10T12:52:41Z2009-07-21T23:26:34Z
<p>I'm attempting to add a black overlay over some current UIImage's (which are white). I've been trying to use:</p>
<p>[[UIColor blackColor] set];
[image drawAtPoint:CGPointMake(0, 0) blendMode:kCGBlendModeOverlay alpha:1.0];</p>
<p>But it's not working, and I'm pretty sure set isn't supposed to be there.</p>
http://stackoverflow.com/questions/845278/overlaying-a-uiimage-with-a-color/845327#8453270Answer by Roger Nolan for Overlaying a UIImage with a color?Roger Nolan2009-05-10T13:21:57Z2009-05-10T13:21:57Z<p>-set is used to set the colour of subsequent drawing operations which doesn't include blits. I suggest as a first call, displaying another (empty) UIView over yout UIImageView and stting it's background colour:</p>
<pre><code>myView.backgroundColor = [UIColor colorWithWhite:0.0 alpha:0.5];
</code></pre>
<p>Obviously you should use the white and alpha values you want.</p>
http://stackoverflow.com/questions/845278/overlaying-a-uiimage-with-a-color/846648#8466483Answer by rpetrich for Overlaying a UIImage with a color?rpetrich2009-05-11T03:37:33Z2009-05-11T03:43:00Z<p>You will want to clip the context to an image mask and then fill with a solid color:</p>
<pre><code>- (void)drawRect:(CGRect)rect
{
CGRect bounds = [self bounds];
[[UIColor blackColor] set];
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextClipToMask(context, bounds, [myImage CGImage]);
CGContextFillRect(context, bounds);
}
</code></pre>
<p>Note: <code>myImage</code> should be an instance variable that contains an <code>UIImage</code>. I'm not sure whether it takes the mask from the alpha channel or the intensity so try both.</p>
http://stackoverflow.com/questions/845278/overlaying-a-uiimage-with-a-color/1162285#11622850Answer by seaniepie for Overlaying a UIImage with a color?seaniepie2009-07-21T23:26:34Z2009-07-21T23:26:34Z<p>In addition to the solution by rpetrich (which is great by the way - help me superbly), you can also replace the CGContextClipToMask line with:</p>
<pre><code> CGContextSetBlendMode(context, kCGBlendModeSourceIn); //this is the main bit!
</code></pre>
<p>It's the SourceIn blendmode that does the job of masking the color by whatever is in the GetCurrentContext.</p>