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
Need to convert the image to RGBA and then get the raw data
The text was updated successfully, but these errors were encountered:
This can only work by default in the browser (ImageData doesn't exist in Node.js). For the test case, a fake class could be added in a before hook:
before
globalThis.ImageData = class ImageData { // Minimal implementation for the test. }
And deleted in an after hook:
after
delete globalThis.ImageData;
API: https://developer.mozilla.org/en-US/docs/Web/API/ImageData/ImageData
Sorry, something went wrong.
moonayyur
No branches or pull requests
Need to convert the image to RGBA and then get the raw data
The text was updated successfully, but these errors were encountered: