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

I am trying to mask an image something like this:

enter image description here

I found this tutorial but it did not mention where I can find Image.png or mask.png!

TUTORIAL

Would you please help me?

EDIT:

- (void) viewDidLoad {
    UIImage *OrigImage = [UIImage imageNamed:@"dogs.png"];
    UIImage *mask = [UIImage imageNamed:@"mask.png"];
    UIImage *maskedImage = [self maskImage:OrigImage withMask:mask];
    myUIIMage.image = maskedImage;
}
share|improve this question
+1 for the tutorial link – Nick Weaver Apr 22 '11 at 16:14
8  
I am the person that wrote the original tutorial. The mask image is just a simple greyscale image I created in photoshop. Nothing special about it. The black area become the "transparent" part of the mask. Keep in mind that any shade of gray is interpreted as a degree of opacity. In this manner, masks can be gradients as well which is useful for creating softer borders around a mask. – raiglstorfer May 10 '11 at 19:21
Thanks a ton for the tutorial, To the writer and to the sharer too .. :) – ScarletWitch May 15 at 7:34

3 Answers

up vote 21 down vote accepted

The tutorial uses this method with two parameters: image and maskImage, these you have to set when you call the method. An example call could look like this, assuming the method is in the same class and the pictures are in your bundle:

...
UIImage *image = [UIImage imageNamed:@"dogs.png"];
UIImage *mask = [UIImage imageNamed:@"mask.png"];

// result of the masking method
UIImage *maskedImage = [self maskImage:image withMask:mask];

...

- (UIImage*) maskImage:(UIImage *)image withMask:(UIImage *)maskImage {

    CGImageRef maskRef = maskImage.CGImage; 

    CGImageRef mask = CGImageMaskCreate(CGImageGetWidth(maskRef),
        CGImageGetHeight(maskRef),
        CGImageGetBitsPerComponent(maskRef),
        CGImageGetBitsPerPixel(maskRef),
        CGImageGetBytesPerRow(maskRef),
        CGImageGetDataProvider(maskRef), NULL, false);

    CGImageRef maskedImageRef = CGImageCreateWithMask([image CGImage], mask);
    UIImage *maskedImage = [UIImage imageWithCGImage:maskedImageRef];

    CGImageRelease(mask);
    CGImageRelease(maskedImageRef);

    // returns new image with mask applied
    return maskedImage;
}

After you provided your code I have added some numbers as comments to it for reference. You still have two options. This whole thing is a method, which you are calling somewhere. You don't need to create the images inside it: this reduces the reusability of the method to zero.

To get your code working. Change the methods head (1.) to

- (UIImage *)maskImageMyImages {

Then change the name of the variable in 2. to

UIImage *maskImage = [UIImage imageNamed:@"mask.png"];

The method will return your masked images so you'll have to call this method in some place. Can you show us the code where you are calling your method?

share|improve this answer
sorry ! where should write UIImage *image code ? !!! because on -(UIimage *) maskeImage compiler gives redefinition error ! – Mc.Lover Apr 22 '11 at 16:25
1  
Can you post your code in your question? – Nick Weaver Apr 22 '11 at 16:29
see my edited question – Mc.Lover Apr 23 '11 at 7:35
Added some comments to my answer. – Nick Weaver Apr 23 '11 at 8:43
1  
Not possible, everything is there. You'll have to show us how you are calling this method, or at least the part in which you'd like to mask your images and show the result. – Nick Weaver Apr 23 '11 at 9:08
show 4 more comments

There's an easier way.

#import <QuartzCore/QuartzCore.h>
// remember to include Framework as well

CALayer *mask = [CALayer layer];
mask.contents = (id)[[UIImage imageNamed:@"mask.png"] CGImage];
mask.frame = CGRectMake(0, 0, <img_width>, <img_height>);
yourImageView.layer.mask = mask;
yourImageView.layer.masksToBounds = YES;
share|improve this answer
thank you but i put this code on viewDidLoad but nothing happened ! – Mc.Lover Apr 23 '11 at 8:15
3  
You should set the layer property to use the mask, i.e. [yourImageView.layer setMasksToBounds:YES]; – Wolfgang Schreurs Apr 23 '11 at 9:47
Nice answer, Bartosz! – Nick Weaver Jul 15 '12 at 8:22
1  
Notice that this is necessary to be a UIImageView for this solution. The other solution works with a UIImage only. – Grsmto Oct 5 '12 at 10:29
Awesome. Works like a charm. I am combining this with UIImage's - (UIImage *)resizableImageWithCapInsets:(UIEdgeInsets)capInsets resizingMode:(UIImageResizingMode)resizingMode to add some gradient masking to the borders of a view. – Timo Dec 11 '12 at 10:40
show 1 more comment

I tried both code using either CALayer or CGImageCreateWithMask but none of them didn't work for me

But i found out that the problem is with png file format, NOT the code!!
so just to share my finding!

If you want to use

- (UIImage*) maskImage:(UIImage *)image withMask:(UIImage *)maskImage

you must use 24bit png without alpha channel

If you want to use CALayer mask, you must use (24bit or 8bit) png with alpha channel where transparent part of your png will mask the image (for smooth gradient alpha mask.. use 24bit png with alpha channel)

share|improve this answer

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.