react-native-image-sequence
react-native-image-sequence copied to clipboard
native implementation for creating frame based image animations
This module work fine on iOS, but in Android it works and sometime it just show first frame of animation. Seems that related to memory space available on device! Any...
Hi there! How to solve this issue? please advise. I linked manually.
I have this image sequence of 90 images say `myImages` created like this: ``` js export const myImages = [ require('../assets/img/img0-png'), require('../assets/img/img1-png'), // ..., require('../assets/img/img89-png') ]; ``` If I use...
[See line 141 of RCTImageSequenceView](https://github.com/madsleejensen/react-native-image-sequence/blob/bf8ab51ccf99cbf1df632b79912686e8ee590333/android/src/main/java/dk/madslee/imageSequence/RCTImageSequenceView.java#L141) animationDrawable.start should be called after this.setImageDrawable(animationDrawable);
I'm having an issue where a 23 frame PNG sequence takes about 500-750ms to load in before it starts animating. During this time it seems to lock the thread (as...
Been going through my git history and the moment I added this library, my project's images (unrelated to the image sequences) are showing up in the wrong spot throughout the...
Hi! 👋 Firstly, thanks for your work on this project! 🙂 Today I used [patch-package](https://github.com/ds300/patch-package) to patch `[email protected]` for the project I'm working on. Here is the diff that solved...
Experiencing some performance issues with *some* loading times. It takes about 6 seconds to load 25 frames of 800x800 pixels. Is there anyway to preload the image sequence?