[SOLVED] imagedata seems scaled in canvas | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

[SOLVED] imagedata seems scaled in canvas

i have this code here https://code.sololearn.com/WzHiJVbmZpuc/?ref=app basicly i tried to paint every pixels in red, using ImageData. but after i put the imageData back into canvas, the image is scaled down and strectch. (it looks like this : http://tinyimg.io/i/OUtDwX0.jpg ) width and height of imagedata (and canvas) is in 1:1 ratio, so i dont quite understand why. anyone has explaination or solution for this ? EDIT: changing createImageData(100,100) to getImageData(0,0,100,100) produce the same result.

24th Sep 2019, 9:52 AM
Taste
Taste - avatar
1 Answer
+ 1
solved, it seems i shouldnt resize the canvas from style so i change img.style.width to img.width my mind think its deprecated feature from html4, but silly me canvas was added in html5 😂
24th Sep 2019, 10:53 AM
Taste
Taste - avatar