案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<p>要使用的图片:</p>
6
7
<img src="/img/eg_tulip.jpg" alt="tulip" id="tulip" style="margin-left:0px;" />
8
9
<p>Canvas:</p>
10
11
<canvas id="myCanvas" width="300" height="150" style="border:1px solid #d3d3d3;">
12
Your browser does not support the HTML5 canvas tag.
13
</canvas>
14
15
<script>
16
document.getElementById("tulip").onload=function(){
17
  var c=document.getElementById("myCanvas");
18
  var ctx=c.getContext("2d");
19
  var img=document.getElementById("tulip");
20
  ctx.drawImage(img,90,130,90,80,20,20,90,80);
21
};
22
</script>
23
24
</body>
25
</html>
26