Open pixelami opened 11 years ago
More Info, The problem seems to happen after ImageData width > 1919.
i.e. This is fine when used with put data. var imgdata = ctx.getImageData(0, 0, 1919, h);
this breaks. var imgdata = ctx.getImageData(0, 0, 1920, h);
Hi I think I found an issue with putImageData, certainly I have only seen this just now when placing an image that was the full width of the screen.
Code to reproduce.
I have reproduced with a composited image grabbed from the context via getImageData, and also with a simple 1920x1080 jpg (as in the test above).
Screenshot