6

我试图使我的 UIImageView 的周围区域变暗,并单独留下一部分(我用我的面具定义)。

现在我正在定义我的蒙版并设置我的 imageView.layer.mask,但是它并没有使图像的其余部分变暗,而是完全删除它。

我想要的效果类型示例:http://i.imgur.com/vVUiuyk.png

我得到的例子:http://i.imgur.com/5DTXo0S.png

参考文档提到蒙版使用它的图层 alpha,所以我尝试操纵蒙版的不透明度。但是,这似乎只会影响我想单独留下的部分的不透明度,而图像的其余部分仍然被完全剪掉。

谁能指出我做错了什么?谢谢。

这是我的代码:

CAShapeLayer *mask = [CAShapeLayer layer];
GMutablePathRef path = CGPathCreateMutable();

CGPathMoveToPoint(path, nil, 1052, 448);
CGPathAddLineToPoint(path, nil, 2, 484);
CGPathAddLineToPoint(path, nil, 54, 1263);
CGPathAddLineToPoint(path, nil, 56, 1305);
CGPathAddLineToPoint(path, nil, 380, 1304);
CGPathAddLineToPoint(path, nil, 1050, 1311);
CGPathCloseSubpath(path);
mask.path = path;
CGPathRelease(path);

//mask.opacity = 0.5; //doesn't affect the surrounding portion, only the cut out area.
self.imageView.layer.mask = mask;
4

2 回答 2

5

你做错的是首先使用图层蒙版。您正在尝试使图像的某个区域变暗或变暗。这根本不是图层蒙版的作用!基本上,图层蒙版会穿透现有图层,导致其后面的任何内容都显示出来。这正是你发现的:

它正在完全删除它

是的,因为这就是图层蒙版的作用!如果你不想要那个,你为什么要使用图层蒙版?

您想要的只是在第一个图像视图上放置第二个图像视图(或只是一个子图层。它包含您绘制的图像。它是透明的,除非它具有半透明的深色填充。这将使背后的东西变暗。您使用剪切路径来定义没有得到深色填充的区域。

或者,通过在图像顶部进行合成或可能使用 CIFilter 来更改图像视图中的图像。

于 2013-04-04T04:59:05.373 回答
2

如果其他人有同样的问题:如果目标是使图层变暗,则蒙版不适合。但是如果你需要让图像的一部分透明或半透明,那绝对是一个很好的方法。

例如,此代码可以存在于 NSView 子类中:

    let imageLayer = CALayer()
    let maskLayer = CAShapeLayer()

    let ovalPath = NSBezierPath(ovalIn: bounds)
    maskLayer.path = ovalPath
    maskLayer.autoresizingMask = [.layerWidthSizable, .layerHeightSizable]
    maskLayer.frame = bounds
    maskLayer.backgroundColor = NSColor.black.withAlphaComponent(0.2).cgColor

    imageLayer.contents = NSImage(named: "sampleImage")
    imageLayer.autoresizingMask = [.layerWidthSizable, .layerHeightSizable]
    imageLayer.frame = bounds


    imageLayer.mask = maskLayer

这为imageLayer.

于 2019-04-02T09:54:32.693 回答