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.

How do I add colour to my text in canvas. When I tried fillStyle the text just stayed black.

share|improve this question

1 Answer

up vote 1 down vote accepted

you indeed have to set fillStyle and then call fill();

  ctx.strokeStyle = 'red';
  ctx.stroke();
  ctx.fillStyle= 'blue';
  ctx.fill();
share|improve this answer
Thanks, i found out after I posted the question. Here is the finished product of my question: nebkat.com/projects/alphaworks – NebNeb Mar 29 '10 at 16:48

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.