강좌 & 팁
글 수 2,412
2011.10.13 11:41:57 (*.138.143.120)
44077
CanvasRenderingContext2D.stroke()
설명
패쓰로 지정된 도형의 외각선을 그린다.
분류
경로 API
형태
void CanvasRenderingContext2D.stroke();
인수
없음
반환
없음
예제
<html>
<head>
<script type="application/javascript">
function draw() {
var canvas = document.getElementById("canvas");
if (canvas.getContext) {
var ctx = canvas.getContext("2d");
ctx.beginPath();
ctx.rect (10,10,90,90);
ctx.fillStyle = "red";
ctx.fill();
ctx.strokeStyle = "black";
ctx.stroke();
}
}
</script>
</head>
<body onload="draw();">
<canvas id="canvas" width="150" height="150"></canvas>
</body>
</html>
결과