Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

Please advise, thanks!

share|improve this question
IMHO your google skills are not very good. – Ivan Castellanos 21 hours ago

6 Answers

up vote 54 down vote accepted

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

share|improve this answer
3  
+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
<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>
share|improve this answer
4  
Many Thanks. This is the best answer on this page. Everything else is just blah blah :-) – Robert Reiz Jun 17 '12 at 18:52
4  
+1 for not just being a link. – Steve Fenton Feb 5 at 16:19
worked like a charm. – chovy Apr 19 at 7:33

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.

share|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

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.

share|improve this answer

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

share|improve this answer

check this example you will under it fast . If still have doubt than ask me . i will clear everything

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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