0

我从 uiview 创建万花筒效果。它使用子图层和子图层蒙版的阁楼。然后我使用下面的代码从 uiview 渲染 uiimage。

UIGraphicsBeginImageContextWithOptions(view.bounds.size, view.opaque, 0.0);
[view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

在此处输入图像描述

渲染图像如下:

在此处输入图像描述

问题是渲染图像不渲染蒙版效果。

4

0 回答 0