Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
I want to develop a web application in which i need to make 2d drawings.
Can anyone, suggest me open source / well documented libraries for rendering 2d drawing on the web ?

Also, it should work well on internet explorer as well

Thanks
Posted

1 solution

Well a lot of modern browsers now support HTML5's 'Canvas' element, which can do all sorts of fancy drawing and animation, as shown in the compatibility chart here:

http://caniuse.com/canvas[^]

An introduction to, and examples of which can be found here:

https://developer.mozilla.org/en-US/docs/HTML/Canvas/Tutorial[^]

But for support in IE Browsers of version 8 or earlier, you will probably need to use a third party library such as FlashCanvas, which can be found here:

http://code.google.com/p/flashcanvas/wiki/Examples[^]
 
Share this answer
 
v2

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



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