Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<body>
<canvas id="canvas2" width="128" height="128"></canvas>
<script type="text/javascript">
let ctx2 = canvas2.getContext("2d")
ctx2.fillStyle="green"
ctx2.fillRect(0,40,100,20)
ctx2.filter="hue-rotate(45deg)"
ctx2.fillRect(40,0,20,100)
</script>
</body>
</html>