有没有办法从UIWebView中抓取像素并将其渲染为opengl纹理?
答案 0 :(得分:1)
我不知道加载opengl纹理需要什么。但是这会将视图中的数据转换为jpeg。
UIGraphicsBeginImageContext(self.bounds.size);
[self.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
抱歉半答案。希望有人能从这里拿走它......