我有一个 UIView,其中包含 UIImagesViews 以及从远程服务器加载的图像。
从服务器加载的图像是彩色的。
我想在我的 UIView 上创建一个蒙版,将其所有内容(包括图像)设置为黑白。
但我不想在每张照片准备好时都将蒙版放在上面。
我尝试创建 UIView 的子类:
@interface FriezeView : UIView
@property (nonatomic, strong) UIView *mask;
@property (nonatomic, strong) UIView *container;
@end
这个类的init方法:
- (id)initWithFrameCGRect)frame
{
if ((self = [super initWithFrame:frame]))
{
self.container = [[UIView alloc] initWithFrame:frame];
self.mask = [[UIView alloc] initWithFrame:frame];
[self addSubview:self.container];
[self addSubview:self.mask];
}
return self;
}
然后我使用 mask UIView 为 container UIView 着色。
[_frieze.container addSubview:myImageView];
_frieze.mask.layer.backgroundColor = [[UIColor grayColor] CGColor];
_frieze.mask.backgroundColor = [UIColor grayColor];
但它不起作用。
有什么建议吗?
Best Answer-推荐答案 strong>
不,您不能创建将图像转换为黑白的蒙版。
您可以做的是编写使用核心图像过滤器将图像转换为黑白的代码。
您可以使用 inputIntensity 值为 0 1 的“CIColorMonochrome”滤镜,您可以使用“CIPhotoEffectMono”,或者您可以使用 inputSaturation 值为 0 的“Color Controls”滤镜。
您可以创建 UIImageView 的“MonochromeImage”子类,它将图像作为输入并将其转换为等效的单色进行显示。
我有一个名为 CIFilterTest 的示例项目(链接)在 github 上,可让您使用所有这些过滤器等等。它应该为您提供足够的信息以开始使用。
关于ios - 在 UIView 上创建一个蒙版以将所有 UIImageView subview 着色为黑白,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/23786701/
|