Is it possible to write text on HTML5 canvas? I've googled for that, found some workaround but no good description...

Please advise, thanks!

link|improve this question

78% accept rate
feedback

6 Answers

up vote 24 down vote accepted

I would recommend reading through the diveintohtml5 site, it has it's own chapter about text. It's a very good read.

link|improve this answer
1  
+1 I just love that article. Best one I've read on HTML5. That and Remy Sharp's one. – Marko Sep 13 '10 at 9:29
This article can now be found at the mirror: diveintohtml5.info/canvas.html#text – JKirchartz Oct 8 '11 at 18:51
@JKirchartz thanks, changed. – chelmertz Oct 8 '11 at 19:16
feedback

It is but it's support is very limited at present.

Have a look here.

link|improve this answer
I would say support for it is good enough to get by. All the latest releases of Chrome, FF, Safari and Opera, support it and with an additional script so does IE. The only problem is that they don't all have consistent positioning, so depending on the browser the text can be a few pixels out of place. – Castrohenge Sep 14 '10 at 16:21
feedback

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.

link|improve this answer
+1 Thank you so much, I was using the default download and banging my head against the wall – wheelibin Apr 13 '11 at 9:33
feedback

Depends on what you want to do with it I guess. If you just want to write some normal text you can use .fillText()

link|improve this answer
feedback

Canvas text support is actually pretty good - you can control font, size, color, horizontal alignment, vertical alignment, and you can also get text metrics to get the text width in pixels. In addition, you can also use canvas transforms to rotate, stretch and even invert text.

link|improve this answer
feedback
<canvas id="e" width="200" height="200"></canvas>
<script>
  var canvas = document.getElementById("e");
  var context = canvas.getContext("2d");
  context.fillStyle = "blue";
  context.font = "bold 16px Arial";
  context.fillText("Zibri", 100, 100);
</script>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.