Isaiah Odhner

Results 272 comments of Isaiah Odhner

> any way to ensure that the server (which is other parties set up) has cors enabled or disabled? You can look in the chrome devtools Network tab, refresh if...

Are you using Create React App? See https://github.com/jnordberg/gif.js/issues/115 for how to get it to load the worker properly. Other than that, you shouldn't run into any interoperability problems, and you...

You've given basically no information here... What are you trying to do? Where are the images coming from? Drag and drop? Specific URLs? And what have you tried?

You can resize the images by drawing them to canvases, or a single canvas with `copy: true` on `addFrame` Something like this: ```js var canvas = document.createElement("canvas"); var ctx =...

These two things are generally unrelated. You can look up elsewhere for sharing GIFs to WeChat. There's an [answered question here on how to share from iOS](https://stackoverflow.com/a/44041180/2624876), and an [unanswered...

`gif.abort()` isn't mentioned in the [documentation](https://github.com/jnordberg/gif.js/issues/35)

If you just need to combine two GIFs, you could use a service like ~~ezgif using the [splitter](https://ezgif.com/split) and [maker](https://ezgif.com/maker)~~ [gifcreator.me](http://gifcreator.me/) which apparently can do it in one step just...

Looks like `npm run prepublish` should build it.

The answer to this is yes. You just have to call `gif.addFrame` each step, and then at some point stop adding frames and call `gif.render`. You can use a flag...