7

我在我的 iOS 应用程序中使用 GPUImageView。我希望 GPUImageView 具有透明背景。我试过 setBackground:[UIColor clearColor] 它不起作用。任何解决方法?

问候

4

2 回答 2

10

我发现你需要设置这两个以获得透明背景。两者都不能单独工作。

strengthPreviewImageView.backgroundColor = [UIColor clearColor];
[strengthPreviewImageView setBackgroundColorRed:0 green:0 blue:0 alpha:0];
于 2013-03-06T23:06:21.363 回答
3

...您是否尝试过 GPUImageView 标头中的方法?

- (void)setBackgroundColorRed:(GLfloat)redComponent green:(GLfloat)greenComponent blue:(GLfloat)blueComponent alpha:(GLfloat)alphaComponent;
于 2012-12-11T14:45:59.893 回答