We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
addFrame
is_imageData=true
I'm now try separating jsgif process to Web Worker. This needs to pass the image data, not the whole of context.
So I used addFrame(ctx.getImageData(0,0,100,100), true) but this makes Chrome hang... Can you confirm this issue?
addFrame(ctx.getImageData(0,0,100,100), true)
Thanks in advance.
The text was updated successfully, but these errors were encountered:
I'm running into this myself too
Sorry, something went wrong.
It was happening to me also, then I realized I forgot to call encoder.setSize(width, height);
encoder.setSize(width, height);
It looks like there’s a typo of sizeSet (accidentally written as sizeset) in the addFrame function
No branches or pull requests
I'm now try separating jsgif process to Web Worker. This needs to pass the image data, not the whole of context.
So I used
addFrame(ctx.getImageData(0,0,100,100), true)
but this makes Chrome hang... Can you confirm this issue?Thanks in advance.
The text was updated successfully, but these errors were encountered: