填充(路徑命令)
context.fill()
根據當前 context.fillStyle
填充 Path 的內部,並將填充的 Path 可視地繪製到畫布上。
在執行 context.fill
(或 context.stroke
)之前,Path 存在於記憶體中,並且尚未在畫布上以可視方式繪製。
使用 context.fill()
在畫布上繪製填充路徑的示例程式碼:
<!doctype html>
<html>
<head>
<style>
body{ background-color:white; }
#canvas{border:1px solid red; }
</style>
<script>
window.onload=(function(){
// canvas related variables
var canvas=document.getElementById("canvas");
var ctx=canvas.getContext("2d");
ctx.beginPath();
ctx.moveTo(50,30);
ctx.lineTo(75,55);
ctx.lineTo(25,55);
ctx.lineTo(50,30);
ctx.fillStyle='blue';
ctx.fill();
}); // end window.onload
</script>
</head>
<body>
<canvas id="canvas" width=100 height=100></canvas>
</body>
</html>