강좌 & 팁
HTMLCanvasElement.getContext()
설명
CANVAS 에 그리기 대상이 되는 컨텍스트를 얻는다.
형태
HTMLCanvasElement.getContext(in DOMString contextId);
인수
DOMString contextId
얻어올 컨텍스트 객체를 구별하는 ID 문자열
현재는 "2d" 만을 지원한다.
반환
저장된 컨텍스트 ID에 해당하는 컨텍스트 객체를 반환한다.
컨텍스트 ID 에 "2d" 를 지정하면 Canvas RenderingContext2D를 반환한다.
예제
<html>
<head>
<script type="application/javascript">
function draw() {
var canvas = document.getElementById("canvas");
if (canvas.getContext) {
var ctx = canvas.getContext("2d");
ctx.fillStyle = "rgb(200,0,0)";
ctx.fillRect (10, 10, 55, 50);
ctx.fillStyle = "rgba(0, 0, 200, 0.5)";
ctx.fillRect (30, 30, 55, 50);
}
}
</script>
</head>
<body onload="draw();">
<canvas id="canvas" width="150" height="150"></canvas>
</body>
</html>
결과