案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<p>要使用的图像:</p>
6
<img id="tulip" src="/img/eg_tulip.jpg" alt="The Tulip" />
7
8
<p>画布:</p>
9
<canvas id="myCanvas" width="500" height="300" style="border:1px solid #d3d3d3;background:#ffffff;">
10
Your browser does not support the HTML5 canvas tag.
11
</canvas>
12
13
<script>
14
15
var c=document.getElementById("myCanvas");
16
var ctx=c.getContext("2d");
17
var img=document.getElementById("tulip");
18
ctx.drawImage(img,10,10,240,160);
19
20
</script>
21
22
</body>
23
</html>