填充(路径命令)
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>