Click here to Skip to main content
15,891,789 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have drawing application where users are allowed to draw various shapes on canvas. Code is tested and working properly on Chrome,IE 10,IE 9(9.0.8112.16421), however it's showing absurd behavior on IE 9(9.0.8112.16421 64-bit edition).The main issue is images are not getting drawn on canvas(sometime). Unable to figure out the reason, if i start debugging or put alerts between loading images and drawing them on canvas then it works properly.Seems like images are not getting loaded fully but if that's the reason then it should behave similar in IE 9 version which is not 64-bit edition. Any clue how to handle this problem???
Posted
Comments
KumarSundeep 19-Mar-14 4:35am    
Are you using html5 canvas?
Dexter11 19-Mar-14 5:09am    
yes
KumarSundeep 24-Mar-14 2:10am    
Try to put document.body.appendChild(canvasEl) before you draw. The Canvas is much slower in IE (both 32 bit and 64 bit)when you start drawing on it and when it's not in the document.
Hope, it may help you.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900