rect(x, y, w, h)メソッドは、四角形を作成する際に使用します。
beginPath()・
moveTo(x, y)・
lineTo(x, y)メソッドなどを使用して、
直線のサブパスを4回繰り返す方法もありますが、
rect()を使用すると、より簡単に閉じた四角形のサブパスを作成することができます。
引数(x, y)は、四角形の左上の座標です。
Canvasにおける座標は、<canvas>要素の左上端からの距離で指定します。
引数wとhは、四角形の幅と高さです。
これらの引数を指定することで、
左上が(x, y)、右上が(x+w, y)、右下が(x+w, y+h)、左下が(x, y+h)の
四角形のサブパスが作成されます。
rect()で四角形のサブパスを作成した後に、新しいサブパスを作成すると座標(x, y)から開始されます。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>canvasで図形を描く</title>
<script type="text/javascript">
<!--
function test() {
//描画コンテキストの取得
var canvas = document.getElementById('sample');
if (canvas.getContext) {
var context = canvas.getContext('2d');
//ここに具体的な描画内容を指定する
//新しいパスを開始する
context.beginPath();
//左から20上から20の位置に幅50高さ50の輪郭の四角形を作成する
context.rect(20,20,50,50);
//現在のパスを輪郭表示する
context.stroke();
}
}
//-->
</script>
</head>
<body onLoad="test()">
<h2>Canvasで図形を描く</h2>
<canvas width="300" height="150" id="sample" style="background-color:yellow;">
図形を表示するには、canvasタグをサポートしたブラウザが必要です。
</canvas>
</body>
</html>