Imageview ios中的屏蔽和反向屏蔽 [英] Masking and Reverse Masking in Imageview ios

查看:93
本文介绍了Imageview ios中的屏蔽和反向屏蔽的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个包含图像的Imageview。还有一个包含兔子形状的面膜形状。
我有一个代码可以得到以下结果。

I have one Imageview that contains the Image . And one Mask Shape that contains shape of rabbit. I have one code that gives the below result.

- (UIImage*)mynewmaskImage:(UIImage *)image withMask:(UIImage *)maskImage {
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();

CGImageRef maskImageRef = [maskImage CGImage];

// create a bitmap graphics context the size of the image
CGContextRef mainViewContentContext = CGBitmapContextCreate (NULL,320, 380, 8, 0, colorSpace,(CGBitmapInfo) kCGImageAlphaPremultipliedLast);
CGColorSpaceRelease(colorSpace);

if (mainViewContentContext==NULL)
    return NULL;

CGFloat ratio = 0;

ratio = 320/ image.size.width;

if(ratio * image.size.height < 380) {
    ratio = 380/ image.size.height;
}

CGRect rect1  = {{0, 0}, {320,380}};
CGRect rect2  = {{-((image.size.width*ratio)-320)/2 , -((image.size.height*ratio)-380)/2}, {image.size.width*ratio, image.size.height*ratio}};

//  CGContextDrawImage(mainViewContentContext, rect2, image.CGImage);

CGContextClipToMask(mainViewContentContext, rect1, maskImageRef);
CGContextDrawImage(mainViewContentContext, rect2, image.CGImage);
CGImageRef newImage = CGBitmapContextCreateImage(mainViewContentContext);
CGContextRelease(mainViewContentContext);

UIImage *theImage = [UIImage imageWithCGImage:newImage];

CGImageRelease(newImage);

// return the image
return theImage;}

上面的代码给出了这个结果。

The above code gives this result.

但是我想要以下结果(如反向掩蔽)。

But I want the below result (like reverse masking).

如何这是可能的。请帮助我。
谢谢。

How it is possible.Please Help me. Thanks.

推荐答案

您应该查看blendMode。尝试这样的smth:

You should look through blendMode. Try smth like this:

[rabbitImage drawInRect:rect
              blendMode:kCGBlendModeDestinationOut
                alpha:1.0];

这篇关于Imageview ios中的屏蔽和反向屏蔽的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆