我在我的 iOS 应用程序中使用 GPUImageView。我希望 GPUImageView 具有透明背景。我试过 setBackground:[UIColor clearColor] 它不起作用。任何解决方法?
问候
我发现你需要设置这两个以获得透明背景。两者都不能单独工作。
strengthPreviewImageView.backgroundColor = [UIColor clearColor];
[strengthPreviewImageView setBackgroundColorRed:0 green:0 blue:0 alpha:0];
...您是否尝试过 GPUImageView 标头中的方法?
- (void)setBackgroundColorRed:(GLfloat)redComponent green:(GLfloat)greenComponent blue:(GLfloat)blueComponent alpha:(GLfloat)alphaComponent;