Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm printing text to a canvas in a pretty straight forward way, as shown:

var ctx = canvas.getContext('2d');
ctx.font = "10pt Courier";
ctx.fillText("Hello World", 100, 100);

But how can I change the text to bold, italic or both? Any suggestions to fix that simple example?

share|improve this question

2 Answers

up vote 23 down vote accepted

You can use any of these:

ctx.font = "italic 10pt Courier";

ctx.font = "bold 10pt Courier";

ctx.font = "italic bold 10pt Courier";

For further information, here are a couple of resources:

share|improve this answer
1  
Arg beat me to it, +1 Great site for more info, diveintohtml5.org/canvas.html#divingin – Loktar Mar 1 '11 at 17:44
@Loktar Thanks for the link, included it in answer. – Donut Mar 1 '11 at 17:46
Ah, thanks so much. – Ritchie Mar 8 '11 at 0:51
regarding underline: stackoverflow.com/questions/4627133/… – jedierikb Dec 12 '12 at 16:38
You can also specify the font weight: ctx.font = "400 10pt Courier" – Ivan P Apr 5 at 20:11

Underline is not possible through any of the canvas methods or properties. But I did some work around to get it done. You can check it out @ http://scriptstock.wordpress.com/2012/06/12/html5-canvas-text-underline-workaround

You can find the implementation here http://jsfiddle.net/durgesh0000/KabZG/

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.