我试图使我的 UIImageView 的周围区域变暗,并单独留下一部分(我用我的面具定义)。
现在我正在定义我的蒙版并设置我的 imageView.layer.mask,但是它并没有使图像的其余部分变暗,而是完全删除它。
我想要的效果类型示例:
我得到的例子:
参考文档提到蒙版使用它的图层 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;