是否有可能从gl-react-native中保存受影响的图像?

时间:2016-10-07 08:39:30

标签: opengl-es react-native

https://github.com/ProjectSeptemberInc/gl-react-native/issues/116

我正在使用gl-react-native来创建一些非常棒的图像效果,我的问题是如何将这些受影响的图像保存到新图像中,因为gl-react-native只是在原始图像上创建了一个过滤层。

1 个答案:

答案 0 :(得分:1)

是的,有一种方法可以捕获Surface视图。

查看此文档:https://projectseptemberinc.gitbooks.io/gl-react/content/docs/api/Surface.html

例如:

你的渲染中的

<Surface ref="surface">{...}</Surface>

以后

this.refs.surface.captureFrame({ type: "png", format: "file" }).then(uri => { console.log("DO SOMETHING WITH", uri); });