菜鸟教程小白 发表于 2022-12-12 10:59:04

ios - 如何在 React Native 中处理图像序列


                                            <p><p>我目前有一个适用于 iOS (iPad 4) 的基本 1 页 React Native 应用程序,它显示相机源并覆盖图像序列。该图像序列由 149 帧组成,并且不断循环。</p>

<p>我通过每秒 24 次替换 <code>Image</code> 组件的源来实现图像序列循环。</p>

<p>这是应用程序类(没有样式 Prop )。</p>

<pre><code>class App extends Component {

    constructor(props) {
      super(props);

      this.state = {
            frame: 1
      };
    }

    componentDidMount() {
      setInterval(() =&gt; {
            let frame = this.state.frame;

            frame++;

            if (frame &gt; 149) {
                frame = 1;
            }

            this.setState({frame});
      }, 1000 / 24);
    }

    render() {
      return (
            &lt;View style={styles.container}&gt;
                &lt;Camera ref={(cam) =&gt; {this.camera = cam}}&gt;
                  &lt;Text&gt;Frame: {this.state.frame}&lt;/Text&gt;
                  &lt;Image source={{uri: `./gifs/${this.state.frame}.gif`}}/&gt;
                &lt;/Camera&gt;
            &lt;/View&gt;
      );
    }

}
</code></pre>

<p>它给出了这个作为输出。</p>

<p> <a href="/image/46gm9.jpg" rel="noreferrer noopener nofollow"><img src="/image/46gm9.jpg" alt="Image of the app."/></a> </p>

<p>我遇到的问题是应用程序在不同的时间长度后崩溃。有时它可以运行 3 秒前崩溃,有时它可以运行 2 分钟前崩溃。</p>

<p>我猜这是内存问题,但在 Xcode 的调试器中,它只使用了大约 10% 的可用内存。有没有办法以某种方式仅将我需要的图像加载到内存中并删除我不需要的图像,或者这是自动管理的?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>试试 <a href="https://github.com/williamngan/react-native-sprite" rel="noreferrer noopener nofollow">react-native-sprite</a> ,它使用原生 <code>UIImageView</code> 而不是 javascript setInterval 解决方案为图像序列设置动画。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 React Native 中处理图像序列,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/36835193/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/36835193/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 React Native 中处理图像序列