Skip to content
New issue

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

ImageData data assignment in Strict Mode #314

Open
eliorar opened this issue Jan 9, 2020 · 3 comments
Open

ImageData data assignment in Strict Mode #314

eliorar opened this issue Jan 9, 2020 · 3 comments

Comments

@eliorar
Copy link

eliorar commented Jan 9, 2020

img.data = imgData // this line is not working in strict mode (line 527 heatmap.js);
this.ctx.putImageData(img, x, y);
this._renderBoundaries = [1000, 1000, 0, 0];
the error is as follows:
TypeError: Cannot assign to read only property 'data' of #<ImageData>

Possible solution:
according to documentation:
https://developer.mozilla.org/en-US/docs/Web/API/ImageData
you should use only putImageData function, so removing img.data = imgData resolves the issue

@raycrummey
Copy link

fixed in Pull Request #315. img.data is being mutated by changes to imgData.

@muyao1987
Copy link

You can use this bug-fixed version:npm install @mars3d/heatmap.js

Corresponding source address: https://github.com/muyao1987/heatmap.js

mars3d update

  • fix: An error "Cannot assign to read only property 'data' of object '#'"
  • add: Added support for typescript in index.d.ts
  • The NPM package was released @mars3d/heatmap.js

@hankun8645
Copy link

leaflet.js You can use this bug-fixed version:npm install keli-heatmap.js

Corresponding source address: https://www.npmjs.com/package/keli-heatmap.js

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants