我在iOS应用程序中使用GPUImageView。我希望GPUImageView具有透明背景。 我试过setBackground:[UIColor clearColor] 这是行不通的。 任何解决方法?
此致
答案 0 :(得分:10)
我发现你需要设置这两个以获得透明背景。两者都没有。
strengthPreviewImageView.backgroundColor = [UIColor clearColor];
[strengthPreviewImageView setBackgroundColorRed:0 green:0 blue:0 alpha:0];
答案 1 :(得分:3)
...您是否尝试过GPUImageView标头中的方法?
- (void)setBackgroundColorRed:(GLfloat)redComponent green:(GLfloat)greenComponent blue:(GLfloat)blueComponent alpha:(GLfloat)alphaComponent;