Filter (Advanced Search)
Downloads
0
Views
232
Video

Video is not available... Embedded is previous playlist.

Details


<!DOCTYPE html>
<html>
<body>

<table width="100%" border="0">
<tr>
<td valign="top">
<p>Image to use:</p>
<img id="scream" src="/media/StaffImages/579095286.jpg" alt="The Scream" width="220" height="277">
</td>
<td valign="top">
<p>Canvas to fill:</p>
<canvas id="myCanvas" width="250" height="300" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML canvas tag.</canvas>
<p><button onclick="myCanvas()">Try it</button></p>
</td>
</tr>
</table>

<script>
function myCanvas() {
  var c = document.getElementById("myCanvas");
  var ctx = c.getContext("2d");
  var img = document.getElementById("scream");
  ctx.drawImage(img,10,10);
}
</script>

</body>
</html>



Ad