I have a simple canvas
<canvas width="500" height="500" id="rightgalvas" class="right" onclick=""></canvas>
The Javascript used to draw image in it is fetching an image and in onLoad drawing image using this call
context_r.drawImage(cat, 0 ,0, Math.floor((cat.width * 0.20)),cat.height,0, 0,w ,h)
cat is the image loaded w and h are defined earlier to the width and height of canvas. I have also printed the values , and none of them are negative.
I am unable to make this work, i always get INDEX_SIZE_ERROR at this line, for any value of sx, sy in above method other than 0.
drawImage(image, sx, sy, sWidth, sHeight, dx, dy, dWidth, dHeight)
Please help on how to make this work.
catas an image variable?var cat = new Image();cat.src="cat.png"? – PhilI Sep 19 '11 at 16:13sy >= 0, causesy + sHeightshould be<= image.height. Settingsx > 0should work, though. – kirilloid Sep 21 '11 at 19:18