I can draw text using these code:

			myCanvas.fillStyle = "Red";

			myCanvas.font = "30pt Arial";
			myCanvas.fillText("Some Text", 10, 30);

I want to add a border around "Some Text", any ideas on that?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Use strokeText() and the strokeStyle. eg:

<canvas id="myc"></canvas>

<script>
    canvas = document.getElementById("myc");
    context = canvas.getContext('2d');

    context.fillStyle = 'red';
    context.strokeStyle = 'black';

    context.font = '20pt Verdana';
    context.fillText('Some text', 50, 50);
    context.strokeText('Some text', 50, 50);

    context.fill();
    context.stroke();
</script>
link|improve this answer
feedback

What about

myCanvas.style.border = "red 1px solid";
link|improve this answer
This adds a border to the canvas - not to the text drawn within the canvas; I'm assuming op wants to create a border in the shape of the letters themselves. – dionyziz Mar 24 at 23:20
feedback

Your Answer

 
or
required, but never shown

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