合成を使用して、1 つのキャンバスでこれを行うことができます。
- 黒い長方形を描く
- 「消去」するdestination-outに合成を設定します
- 円弧を描く (黒い四角形の一部を消去する)
- 合成を「後ろに引く」目的地オーバーに設定します
- 赤い四角形を描きます(アークカット四角形の後ろを埋めます。
ここにコードとフィドルがあります: http://jsfiddle.net/m1erickson/F4dp3/
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" media="all" href="css/reset.css" /> <!-- reset css -->
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<style>
body{ background-color: ivory; }
#canvas{border:1px solid red;}
</style>
<script>
$(function(){
var canvas=document.getElementById("canvas");
var context=canvas.getContext("2d");
context.save();
context.beginPath();
context.rect(20,20,150,100);
context.fillStyle = "black";
context.fill();
context.globalCompositeOperation = "destination-out";
context.beginPath();
context.arc(100, 100, 50, 0, 2*Math.PI);
context.fill();
context.globalCompositeOperation = "destination-over";
context.beginPath();
context.rect(20,20,160,200);
context.fillStyle = "red";
context.fill();
context.restore();
}); // end $(function(){});
</script>
</head>
<body>
<canvas id="canvas" width=300 height=300></canvas>
</body>
</html>