1801588-1-ref.html (311B)
1 <!DOCTYPE html> 2 <html> 3 <body> 4 <canvas id="canvas" width="100" height="100"></canvas> 5 <script> 6 var c = document.getElementById("canvas"); 7 var ctx = c.getContext("2d"); 8 ctx.globalCompositeOperation = "copy"; 9 ctx.fillStyle = "green"; 10 ctx.fillRect(0, 0, 50, 50); 11 </script> 12 </body> 13 </html>