Is it possible to write text on HTML5 canvas? I've googled for that, found some workaround but no good description...
Please advise, thanks!
Is it possible to write text on HTML5 canvas? I've googled for that, found some workaround but no good description...
Please advise, thanks!
It is but it's support is very limited at present.
Have a look here.
Depends on what you want to do with it I guess. If you just want to write some normal text you can use .fillText()
I would recommend reading through the diveintohtml5 site, it has it's own chapter about text
. It's a very good read.
In addition to the other answers if you want to write text using excanvas (for IE support) you'll need an additional script, available here:
http://code.google.com/p/explorercanvas/issues/detail?id=6
The default download (http://code.google.com/p/explorercanvas/downloads/list) doesn't include the fillText and strokeText method.
i want to write text on canvas in similar way as we write in an ms paint selecting the cursor dragging and writinf the text into the box. how do we do it?